changeset 12324:41bd44279127

(sigchld_handler): Change XSETFASTINT to XSETINT.
author Richard M. Stallman <rms@gnu.org>
date Mon, 19 Jun 1995 23:18:54 +0000
parents a48a0352b344
children aa6fc4e97a28
files src/process.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/process.c	Mon Jun 19 22:54:58 1995 +0000
+++ b/src/process.c	Mon Jun 19 23:18:54 1995 +0000
@@ -3247,8 +3247,8 @@
 	  
 	  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))