* process.c (sigchld_handler): Add cast, to avoid warnings on Linux.
This commit is contained in:
parent
eb8c3be94e
commit
95e8068d3e
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue