diff options
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index cc20336dd30..2265c2c34db 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -2108,7 +2108,7 @@ send_process (proc, buf, len) | |||
| 2108 | /* Don't send more than 500 bytes at a time. */ | 2108 | /* Don't send more than 500 bytes at a time. */ |
| 2109 | if (this > 500) | 2109 | if (this > 500) |
| 2110 | this = 500; | 2110 | this = 500; |
| 2111 | old_sigpipe = signal (SIGPIPE, send_process_trap); | 2111 | old_sigpipe = (SIGTYPE (*) ()) signal (SIGPIPE, send_process_trap); |
| 2112 | rv = write (XFASTINT (XPROCESS (proc)->outfd), buf, this); | 2112 | rv = write (XFASTINT (XPROCESS (proc)->outfd), buf, this); |
| 2113 | signal (SIGPIPE, old_sigpipe); | 2113 | signal (SIGPIPE, old_sigpipe); |
| 2114 | if (rv < 0) | 2114 | if (rv < 0) |