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 1df4ed9ce03..3beb9cf7146 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -7217,7 +7217,7 @@ child_signal_read (int fd, void *data) | |||
| 7217 | eassert (0 <= fd); | 7217 | eassert (0 <= fd); |
| 7218 | eassert (fd == child_signal_read_fd); | 7218 | eassert (fd == child_signal_read_fd); |
| 7219 | char dummy; | 7219 | char dummy; |
| 7220 | if (emacs_read (fd, &dummy, 1) < 0) | 7220 | if (emacs_read (fd, &dummy, 1) < 0 && errno != EAGAIN) |
| 7221 | emacs_perror ("reading from child signal FD"); | 7221 | emacs_perror ("reading from child signal FD"); |
| 7222 | } | 7222 | } |
| 7223 | #endif /* !WINDOWSNT */ | 7223 | #endif /* !WINDOWSNT */ |