summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2010-06-12 16:30:46 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2010-06-12 16:30:46 +0000
commitd1a0c33538a045c295230c233a2bb84b952f971b (patch)
tree6992af907079d04ac25df96242085823122fdc7b
parent70e026f83d4a252687bc283082d621be3d75c37b (diff)
Add missing arg to a printf call.
ok damien@
-rw-r--r--sys/dev/ic/athn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/athn.c b/sys/dev/ic/athn.c
index 0a88c70e91d..53d683a9097 100644
--- a/sys/dev/ic/athn.c
+++ b/sys/dev/ic/athn.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: athn.c,v 1.49 2010/06/05 18:43:57 damien Exp $ */
+/* $OpenBSD: athn.c,v 1.50 2010/06/12 16:30:45 jsg Exp $ */
/*-
* Copyright (c) 2009 Damien Bergamini <damien.bergamini@free.fr>
@@ -2024,7 +2024,7 @@ athn_hw_reset(struct athn_softc *sc, struct ieee80211_channel *c,
error = athn_reset(sc, 0);
if (error != 0) {
printf("%s: could not reset chip (error=%d)\n",
- sc->sc_dev.dv_xname);
+ sc->sc_dev.dv_xname, error);
return (error);
}