aboutsummaryrefslogtreecommitdiff
path: root/procps/top.c
diff options
context:
space:
mode:
Diffstat (limited to 'procps/top.c')
-rw-r--r--procps/top.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/procps/top.c b/procps/top.c
index de30ffb28..b861deb66 100644
--- a/procps/top.c
+++ b/procps/top.c
@@ -888,7 +888,7 @@ int top_main(int argc ATTRIBUTE_UNUSED, char **argv)
888 /* batch mode, or EOF on stdin ("top </dev/null") */ 888 /* batch mode, or EOF on stdin ("top </dev/null") */
889 sleep(interval); 889 sleep(interval);
890 else if (safe_poll(pfd, 1, interval * 1000) > 0) { 890 else if (safe_poll(pfd, 1, interval * 1000) > 0) {
891 if (safe_read(0, &c, 1) != 1) { /* error/EOF? */ 891 if (safe_read(STDIN_FILENO, &c, 1) != 1) { /* error/EOF? */
892 option_mask32 |= OPT_EOF; 892 option_mask32 |= OPT_EOF;
893 continue; 893 continue;
894 } 894 }