* lynx-nat.c (child_wait): Use status.w_status, not status, in

arithmetic.  status is a `union wait'.
This commit is contained in:
Jim Kingdon
1994-09-30 22:53:36 +00:00
parent 10ff87e954
commit a5732a3067
2 changed files with 5 additions and 2 deletions

View File

@@ -608,7 +608,7 @@ child_wait (pid, ourstatus)
pid = wait (&status);
#ifdef SPARC
/* Swap halves of status so that the rest of GDB can understand it */
status = (status << 16) | ((unsigned)status >> 16);
status.w_status = ((unsigned)status.w_status << 16) | ((unsigned)status.w_status >> 16);
#endif
save_errno = errno;