diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-10-27 20:48:28 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2010-10-27 20:48:28 +0000 |
commit | a8ef9a64c105b9c8c87ea83a801c7d08e2d6122d (patch) | |
tree | 99ccfb01ca74e32113291b5dc0129383eb53421e /sys/dev/pci/if_ix.c | |
parent | 4c17c1daae5d0de6e22adfd7d3183beda096557a (diff) |
fix double ;;
Diffstat (limited to 'sys/dev/pci/if_ix.c')
-rw-r--r-- | sys/dev/pci/if_ix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_ix.c b/sys/dev/pci/if_ix.c index 585b506875f..c580c9163c7 100644 --- a/sys/dev/pci/if_ix.c +++ b/sys/dev/pci/if_ix.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ix.c,v 1.44 2010/08/27 08:24:53 deraadt Exp $ */ +/* $OpenBSD: if_ix.c,v 1.45 2010/10/27 20:48:27 deraadt Exp $ */ /****************************************************************************** @@ -3028,7 +3028,7 @@ ixgbe_configure_ivars(struct ix_softc *sc) void ixgbe_update_stats_counters(struct ix_softc *sc) { - struct ifnet *ifp = &sc->arpcom.ac_if;; + struct ifnet *ifp = &sc->arpcom.ac_if; struct ixgbe_hw *hw = &sc->hw; uint32_t missed_rx = 0, bprc, lxon, lxoff, total; int i; |