# HG changeset patch # User Jim Blandy # Date 739629013 0 # Node ID 7ce5a10ed6d9fcfea381c9fa083bfbf2f9ccd656 # Parent 507f646245559659ee7ce58b0447154ac709d900 * process.c (sigchld_handler): Add cast, to avoid warnings on Linux. diff -r 507f64624555 -r 7ce5a10ed6d9 src/process.c --- a/src/process.c Wed Jun 09 11:59:12 1993 +0000 +++ b/src/process.c Wed Jun 09 12:30:13 1993 +0000 @@ -2819,7 +2819,7 @@ synch_process_retcode = WRETCODE (w); else if (WIFSIGNALED (w)) #ifndef VMS - synch_process_death = sys_siglist[WTERMSIG (w)]; + synch_process_death = (char *) sys_siglist[WTERMSIG (w)]; #else synch_process_death = sys_errlist[WTERMSIG (w)]; #endif