diff options
Diffstat (limited to '')
-rw-r--r-- | miscutils/less.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/miscutils/less.c b/miscutils/less.c index 467c76e2a..5a8fc5a74 100644 --- a/miscutils/less.c +++ b/miscutils/less.c | |||
@@ -1178,7 +1178,7 @@ static int64_t getch_nowait(void) | |||
1178 | 1178 | ||
1179 | /* We have kbd_fd in O_NONBLOCK mode, read inside safe_read_key() | 1179 | /* We have kbd_fd in O_NONBLOCK mode, read inside safe_read_key() |
1180 | * would not block even if there is no input available */ | 1180 | * would not block even if there is no input available */ |
1181 | key64 = safe_read_key(kbd_fd, kbd_input, /*timeout off:*/ -2); | 1181 | key64 = safe_read_key(kbd_fd, kbd_input, /*do not poll:*/ -2); |
1182 | if ((int)key64 == -1) { | 1182 | if ((int)key64 == -1) { |
1183 | if (errno == EAGAIN) { | 1183 | if (errno == EAGAIN) { |
1184 | /* No keyboard input available. Since poll() did return, | 1184 | /* No keyboard input available. Since poll() did return, |