Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Golaszewski <bartekgola@gmail.com>2014-01-18 18:36:28 +0400
committerDenys Vlasenko <vda.linux@googlemail.com>2014-01-20 06:26:34 +0400
commit2de232da53da6a79880defc5693242383af58764 (patch)
treed99521af7f2a9668ce832a8f533f35b01bc1c190 /procps/top.c
parentc009d35f0060905842c779fdf57535e0127cb238 (diff)
top.c: fix compilation warnings
pfd[1] is unused Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'procps/top.c')
-rw-r--r--procps/top.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/procps/top.c b/procps/top.c
index 51f1c1aed..530f45fa1 100644
--- a/procps/top.c
+++ b/procps/top.c
@@ -917,17 +917,12 @@ enum {
#if ENABLE_FEATURE_USE_TERMIOS
static unsigned handle_input(unsigned scan_mask, unsigned interval)
{
- struct pollfd pfd[1];
-
if (option_mask32 & OPT_EOF) {
/* EOF on stdin ("top </dev/null") */
sleep(interval);
return scan_mask;
}
- pfd[0].fd = 0;
- pfd[0].events = POLLIN;
-
while (1) {
int32_t c;