summaryrefslogtreecommitdiffstats
path: root/sys/i386/isa/if_wl.c
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1998-08-24 02:28:16 +0000
committerbde <bde@FreeBSD.org>1998-08-24 02:28:16 +0000
commitf45ec220062c45b6f53f7eddeb3892a2df54ca63 (patch)
treeadd7f3aff956758872236d008a575411ee01f80a /sys/i386/isa/if_wl.c
parentd39f49e72d9eed2771f3bb23e90fdaa965286143 (diff)
downloadFreeBSD-src-f45ec220062c45b6f53f7eddeb3892a2df54ca63.zip
FreeBSD-src-f45ec220062c45b6f53f7eddeb3892a2df54ca63.tar.gz
Fixed printf format errors. Only one left in LINT on i386's.
Diffstat (limited to 'sys/i386/isa/if_wl.c')
-rw-r--r--sys/i386/isa/if_wl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/i386/isa/if_wl.c b/sys/i386/isa/if_wl.c
index 867c42e..66dbffd 100644
--- a/sys/i386/isa/if_wl.c
+++ b/sys/i386/isa/if_wl.c
@@ -1,4 +1,4 @@
-/* $Id: if_wl.c,v 1.13 1998/06/17 14:58:00 bde Exp $ */
+/* $Id: if_wl.c,v 1.14 1998/08/20 05:49:59 msmith Exp $ */
/*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -1777,7 +1777,7 @@ wlxmt(int unit, struct mbuf *m)
#ifdef WLDEBUG
if (sc->wl_if.if_flags & IFF_DEBUG) {
if (xmt_debug) {
- printf("XMT mbuf: L%d @%x ", count, mb_p);
+ printf("XMT mbuf: L%d @%p ", count, (void *)mb_p);
printf("ether type %x\n", eh_p->ether_type);
}
}
@@ -1835,7 +1835,7 @@ wlxmt(int unit, struct mbuf *m)
#ifdef WLDEBUG
if (sc->wl_if.if_flags & IFF_DEBUG)
if (xmt_debug)
- printf("mbuf+ L%d @%x ", count, mb_p);
+ printf("mbuf+ L%d @%p ", count, (void *)mb_p);
#endif WLDEBUG
}
#ifdef WLDEBUG
OpenPOWER on IntegriCloud