summaryrefslogtreecommitdiff
path: root/sys/dev/pci/if_nfe.c
diff options
context:
space:
mode:
authorFederico G. Schwindt <fgsch@cvs.openbsd.org>2008-05-19 01:12:42 +0000
committerFederico G. Schwindt <fgsch@cvs.openbsd.org>2008-05-19 01:12:42 +0000
commitf4fa28ecf1b9030a2ca2090832903e3f3ccebe20 (patch)
treee4a673fa8c8c7f070d4675caad1c73d80494dac6 /sys/dev/pci/if_nfe.c
parentc83a7453556faaafebd563539250c7bba2626a0f (diff)
correct format after %x -> %b convertion. deraadt jsg ok.
Diffstat (limited to 'sys/dev/pci/if_nfe.c')
-rw-r--r--sys/dev/pci/if_nfe.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/pci/if_nfe.c b/sys/dev/pci/if_nfe.c
index b3d4989e1f3..c9ddf1382bb 100644
--- a/sys/dev/pci/if_nfe.c
+++ b/sys/dev/pci/if_nfe.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_nfe.c,v 1.77 2008/02/05 16:52:50 brad Exp $ */
+/* $OpenBSD: if_nfe.c,v 1.78 2008/05/19 01:12:41 fgsch Exp $ */
/*-
* Copyright (c) 2006, 2007 Damien Bergamini <damien.bergamini@free.fr>
@@ -871,7 +871,7 @@ nfe_txeof(struct nfe_softc *sc)
goto skip;
if ((flags & NFE_TX_ERROR_V1) != 0) {
- printf("%s: tx v1 error 0x%04b\n",
+ printf("%s: tx v1 error %b\n",
sc->sc_dev.dv_xname, flags, NFE_V1_TXERR);
ifp->if_oerrors++;
} else
@@ -881,7 +881,7 @@ nfe_txeof(struct nfe_softc *sc)
goto skip;
if ((flags & NFE_TX_ERROR_V2) != 0) {
- printf("%s: tx v2 error 0x%04b\n",
+ printf("%s: tx v2 error %b\n",
sc->sc_dev.dv_xname, flags, NFE_V2_TXERR);
ifp->if_oerrors++;
} else