diff src/process.c @ 692:681c352bbf30

*** empty log message ***
author Joseph Arceneaux <jla@gnu.org>
date Fri, 05 Jun 1992 18:39:41 +0000
parents 39f0e62a8511
children e4093444f9f8
line wrap: on
line diff
--- a/src/process.c	Fri Jun 05 05:57:46 1992 +0000
+++ b/src/process.c	Fri Jun 05 18:39:41 1992 +0000
@@ -2108,7 +2108,7 @@
 	/* Don't send more than 500 bytes at a time.  */
 	if (this > 500)
 	  this = 500;
-	old_sigpipe = signal (SIGPIPE, send_process_trap);
+	old_sigpipe = (SIGTYPE (*) ()) signal (SIGPIPE, send_process_trap);
 	rv = write (XFASTINT (XPROCESS (proc)->outfd), buf, this);
 	signal (SIGPIPE, old_sigpipe);
 	if (rv < 0)