Mercurial > emacs
changeset 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 |
files | src/process.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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