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>
This commit is contained in:
parent
c009d35f00
commit
2de232da53
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user