comparison src/process.c @ 3592:7ce5a10ed6d9

* process.c (sigchld_handler): Add cast, to avoid warnings on Linux.
author Jim Blandy <jimb@redhat.com>
date Wed, 09 Jun 1993 12:30:13 +0000
parents 507f64624555
children e425c3048283
comparison
equal deleted inserted replaced
3591:507f64624555 3592:7ce5a10ed6d9
2817 /* Report the status of the synchronous process. */ 2817 /* Report the status of the synchronous process. */
2818 if (WIFEXITED (w)) 2818 if (WIFEXITED (w))
2819 synch_process_retcode = WRETCODE (w); 2819 synch_process_retcode = WRETCODE (w);
2820 else if (WIFSIGNALED (w)) 2820 else if (WIFSIGNALED (w))
2821 #ifndef VMS 2821 #ifndef VMS
2822 synch_process_death = sys_siglist[WTERMSIG (w)]; 2822 synch_process_death = (char *) sys_siglist[WTERMSIG (w)];
2823 #else 2823 #else
2824 synch_process_death = sys_errlist[WTERMSIG (w)]; 2824 synch_process_death = sys_errlist[WTERMSIG (w)];
2825 #endif 2825 #endif
2826 2826
2827 /* Tell wait_reading_process_input that it needs to wake up and 2827 /* Tell wait_reading_process_input that it needs to wake up and