# HG changeset patch # User Richard M. Stallman # Date 803603934 0 # Node ID 41bd44279127feed1192d5fa7d96651e5cb28481 # Parent a48a0352b3444e4877d1a93e021ee6ede6921d65 (sigchld_handler): Change XSETFASTINT to XSETINT. diff -r a48a0352b344 -r 41bd44279127 src/process.c --- 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))