diff options
author | Stuart Henderson <sthen@cvs.openbsd.org> | 2013-03-07 11:20:27 +0000 |
---|---|---|
committer | Stuart Henderson <sthen@cvs.openbsd.org> | 2013-03-07 11:20:27 +0000 |
commit | 557984bde594f4b22620c18c81dd3719a8943a67 (patch) | |
tree | 1fea64d38fac6bade078447a249c112766ba8002 | |
parent | 1c0fee2074f734b834069b932773711f7245c6d2 (diff) |
remove spurious semicolon at end of if statement in vr_watchdog.
from oga@bitrig, ok dtucker
-rw-r--r-- | sys/dev/pci/if_vr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_vr.c b/sys/dev/pci/if_vr.c index 612fb373c1e..ab1baea86ba 100644 --- a/sys/dev/pci/if_vr.c +++ b/sys/dev/pci/if_vr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_vr.c,v 1.127 2013/02/09 19:17:52 sthen Exp $ */ +/* $OpenBSD: if_vr.c,v 1.128 2013/03/07 11:20:26 sthen Exp $ */ /* * Copyright (c) 1997, 1998 @@ -1610,7 +1610,7 @@ vr_watchdog(struct ifnet *ifp) * some TX descriptors to reclaim, so check for that first. */ vr_txeof(sc); - if (sc->vr_cdata.vr_tx_cnt == 0); + if (sc->vr_cdata.vr_tx_cnt == 0) return; ifp->if_oerrors++; |