Mercurial > emacs
diff 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 |
line wrap: on
line diff
--- 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
