diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/blockinput.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blockinput.h b/src/blockinput.h index f02cb5ce85e..0571a648107 100644 --- a/src/blockinput.h +++ b/src/blockinput.h | |||
| @@ -59,7 +59,7 @@ extern int interrupt_input_pending; | |||
| 59 | #define UNBLOCK_INPUT \ | 59 | #define UNBLOCK_INPUT \ |
| 60 | (interrupt_input_blocked--, \ | 60 | (interrupt_input_blocked--, \ |
| 61 | (interrupt_input_blocked < 0 ? (abort (), 0) : 0), \ | 61 | (interrupt_input_blocked < 0 ? (abort (), 0) : 0), \ |
| 62 | ((interrupt_input_blocked == 0 && interupt_input_pending != 0) \ | 62 | ((interrupt_input_blocked == 0 && interrupt_input_pending != 0) \ |
| 63 | ? (kill (0, SIGIO), 0) \ | 63 | ? (kill (0, SIGIO), 0) \ |
| 64 | : 0)) | 64 | : 0)) |
| 65 | #else | 65 | #else |