]> git.eshelyaron.com Git - emacs.git/commitdiff
(sigchld_handler): Change XSETFASTINT to XSETINT.
authorRichard M. Stallman <rms@gnu.org>
Mon, 19 Jun 1995 23:18:54 +0000 (23:18 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 19 Jun 1995 23:18:54 +0000 (23:18 +0000)
src/process.c

index 667dcb9ae66316e86f26457cb6e87fea5ce3446a..c37aa1ce9ef3bb3cb14d8668c1132d7790153704 100644 (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))