diff options
author | 2010-10-27 20:48:27 +0000 | |
---|---|---|
committer | 2010-10-27 20:48:27 +0000 | |
commit | a13d1e2b92353ea87e63351008920bf2e43f179a (patch) | |
tree | 1027ada93a0f70c6ee8bafd6f00554cd309afab5 | |
parent | Fix comment; no binary change. OK deraadt@ (diff) | |
download | wireguard-openbsd-a13d1e2b92353ea87e63351008920bf2e43f179a.tar.xz wireguard-openbsd-a13d1e2b92353ea87e63351008920bf2e43f179a.zip |
fix double ;;
-rw-r--r-- | sys/dev/pci/if_ix.c | 4 | ||||
-rw-r--r-- | sys/dev/pci/qlireg.h | 4 |
2 files changed, 4 insertions, 4 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; diff --git a/sys/dev/pci/qlireg.h b/sys/dev/pci/qlireg.h index 1bae226d679..29d7b0f7c9e 100644 --- a/sys/dev/pci/qlireg.h +++ b/sys/dev/pci/qlireg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: qlireg.h,v 1.8 2007/09/29 16:03:43 marco Exp $ */ +/* $OpenBSD: qlireg.h,v 1.9 2010/10/27 20:48:27 deraadt Exp $ */ /* * Copyright (c) 2007 Marco Peereboom <marco@peereboom.us> * Copyright (c) 2007 David Collins <dave@davec.name> @@ -603,7 +603,7 @@ struct qli_cb { u_int8_t qcb_ipv6_flow_label[3]; u_int8_t qcb_ipv6_def_router_addr[16]; u_int8_t qcb_ipv6_vlan_tci[2]; - u_int8_t qcb_ipv6_link_local_addr_state;; + u_int8_t qcb_ipv6_link_local_addr_state; #define QLI_QCB_IPV6_LLAS_UNCONFIGURED (0x00) #define QLI_QCB_IPV6_LLAS_INVALID (0x01) #define QLI_QCB_IPV6_LLAS_ACQUIRING (0x02) |