* process.c (sigchld_handler): Add cast, to avoid warnings on Linux.

This commit is contained in:
Jim Blandy 1993-06-09 12:30:13 +00:00
parent eb8c3be94e
commit 95e8068d3e

View file

@ -2819,7 +2819,7 @@ sigchld_handler (signo)
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