diff options
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c index ae078e609..173beb195 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -11567,8 +11567,8 @@ readcmd(int argc, char **argv) | |||
11567 | #endif | 11567 | #endif |
11568 | #if ENABLE_ASH_READ_TIMEOUT | 11568 | #if ENABLE_ASH_READ_TIMEOUT |
11569 | if (ts.tv_sec || ts.tv_usec) { | 11569 | if (ts.tv_sec || ts.tv_usec) { |
11570 | FD_ZERO (&set); | 11570 | FD_ZERO(&set); |
11571 | FD_SET (0, &set); | 11571 | FD_SET(0, &set); |
11572 | 11572 | ||
11573 | i = select(FD_SETSIZE, &set, NULL, NULL, &ts); | 11573 | i = select(FD_SETSIZE, &set, NULL, NULL, &ts); |
11574 | if (!i) { | 11574 | if (!i) { |