1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-25 01:10:47 -08:00

(sigchld_handler): Change XSETFASTINT to XSETINT.

This commit is contained in:
Richard M. Stallman 1995-06-19 23:18:54 +00:00
parent 5402169506
commit 5fc0154cf4

View file

@ -3247,8 +3247,8 @@ sigchld_handler (signo)
XSETINT (p->tick, ++process_tick);
u.wt = w;
XSETFASTINT (p->raw_status_low, u.i & 0xffff);
XSETFASTINT (p->raw_status_high, u.i >> 16);
XSETINT (p->raw_status_low, u.i & 0xffff);
XSETINT (p->raw_status_high, u.i >> 16);
/* If process has terminated, stop waiting for its output. */
if ((WIFSIGNALED (w) || WIFEXITED (w))