From: Richard M. Stallman Date: Mon, 19 Jun 1995 23:18:54 +0000 (+0000) Subject: (sigchld_handler): Change XSETFASTINT to XSETINT. X-Git-Tag: emacs-19.34~3535 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5fc0154cf4ce72ff117f8891ed1fddb0af66a528;p=emacs.git (sigchld_handler): Change XSETFASTINT to XSETINT. --- diff --git a/src/process.c b/src/process.c index 667dcb9ae66..c37aa1ce9ef 100644 --- a/src/process.c +++ b/src/process.c @@ -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))