diff options
author | 2004-05-09 22:16:26 +0000 | |
---|---|---|
committer | 2004-05-09 22:16:26 +0000 | |
commit | a366b857d664d8c9d7ae71851d6fcb05c2bd6e96 (patch) | |
tree | 2f0e13d8a06f7bc4ebbcd90c1e02734fdd98e2c0 | |
parent | spaces (diff) | |
download | wireguard-openbsd-a366b857d664d8c9d7ae71851d6fcb05c2bd6e96.tar.xz wireguard-openbsd-a366b857d664d8c9d7ae71851d6fcb05c2bd6e96.zip |
delint
-rw-r--r-- | usr.bin/top/top.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/top/top.c b/usr.bin/top/top.c index e6c5f073770..8161724b272 100644 --- a/usr.bin/top/top.c +++ b/usr.bin/top/top.c @@ -1,4 +1,4 @@ -/* $OpenBSD: top.c,v 1.32 2004/05/09 22:14:15 deraadt Exp $ */ +/* $OpenBSD: top.c,v 1.33 2004/05/09 22:16:26 deraadt Exp $ */ /* * Top users/processes display for Unix @@ -561,7 +561,7 @@ rundisplay(void) * wait for either input or the end * of the delay period */ - if (poll(pfd, 1, delay * 1000) > 0 && + if (poll(pfd, 1, (int)(delay * 1000)) > 0 && !(pfd[0].revents & (POLLERR|POLLHUP|POLLNVAL))) { char *errmsg; ssize_t len; |