summaryrefslogtreecommitdiff
path: root/sys/dev/ic/if_wi_hostap.c
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2006-04-20 20:31:14 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2006-04-20 20:31:14 +0000
commitde5376f6ab54105d367ef84762d22711310371e7 (patch)
treebf44ed50c2db9351ff55368d75f45c807cc72475 /sys/dev/ic/if_wi_hostap.c
parente1d297c29cadf0be3ed3775c0cfbcd97d01d7b9a (diff)
Fix various printf() issues: too many arguments, not enough arguments, argument
order reversed, wrong modifiers. ok deraadt@ marco@ mickey@
Diffstat (limited to 'sys/dev/ic/if_wi_hostap.c')
-rw-r--r--sys/dev/ic/if_wi_hostap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ic/if_wi_hostap.c b/sys/dev/ic/if_wi_hostap.c
index cc0b387b75b..2b0b1765c59 100644
--- a/sys/dev/ic/if_wi_hostap.c
+++ b/sys/dev/ic/if_wi_hostap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_wi_hostap.c,v 1.33 2005/12/03 21:11:48 brad Exp $ */
+/* $OpenBSD: if_wi_hostap.c,v 1.34 2006/04/20 20:31:12 miod Exp $ */
/*
* Copyright (c) 2002
@@ -192,7 +192,7 @@ wihap_init(struct wi_softc *sc)
struct wihap_info *whi = &sc->wi_hostap_info;
if (sc->sc_ic.ic_if.if_flags & IFF_DEBUG)
- printf("wihap_init: sc=0x%x whi=0x%x\n", sc, whi);
+ printf("wihap_init: sc=%p whi=%p\n", sc, whi);
bzero(whi, sizeof(struct wihap_info));
@@ -279,7 +279,7 @@ wihap_shutdown(struct wi_softc *sc)
int i, s;
if (sc->sc_ic.ic_if.if_flags & IFF_DEBUG)
- printf("wihap_shutdown: sc=0x%x whi=0x%x\n", sc, whi);
+ printf("wihap_shutdown: sc=%p whi=%p\n", sc, whi);
if (!(whi->apflags & WIHAPFL_ACTIVE))
return;
@@ -295,7 +295,7 @@ wihap_shutdown(struct wi_softc *sc)
sta != TAILQ_END(&whi->sta_list); sta = next) {
timeout_del(&sta->tmo);
if (sc->sc_ic.ic_if.if_flags & IFF_DEBUG)
- printf("wihap_shutdown: FREE(sta=0x%x)\n", sta);
+ printf("wihap_shutdown: FREE(sta=%p)\n", sta);
next = TAILQ_NEXT(sta, list);
if (sta->challenge)
FREE(sta->challenge, M_TEMP);