summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2014-10-20 07:06:01 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2014-10-20 07:06:01 +0000
commitfe1a826873c79c437fdf9b5d9a8f14d62315c3e9 (patch)
tree1fbc2afd83720a9073f17801bbac427e61c0f2f4
parent6c64990bce02698d460b3cfc5c02c279a0cd2c7b (diff)
fix if (statement);
ok dlg@
-rw-r--r--usr.bin/systat/mbufs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/systat/mbufs.c b/usr.bin/systat/mbufs.c
index fef6095c614..56f1cd6b1fc 100644
--- a/usr.bin/systat/mbufs.c
+++ b/usr.bin/systat/mbufs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mbufs.c,v 1.35 2014/07/08 05:35:19 dlg Exp $ */
+/* $OpenBSD: mbufs.c,v 1.36 2014/10/20 07:06:00 jsg Exp $ */
/*
* Copyright (c) 2008 Can Erkin Acar <canacar@openbsd.org>
*
@@ -335,7 +335,7 @@ read_mb(void)
int pnd = num_disp;
for (p = 0; p < ifi->data.ifri_total; p++) {
ifr = &ifi->data.ifri_entries[p];
- if (ifr->ifr_info.rxr_alive == 0);
+ if (ifr->ifr_info.rxr_alive == 0)
continue;
num_disp++;
}