diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2005-05-22 19:40:52 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2005-05-22 19:40:52 +0000 |
commit | 2d866d2b7371c091dd0dd359da0252f52d783f87 (patch) | |
tree | e09e910d40c428b99b6df80384f71ff22162bfed /sys/arch/mac68k/dev | |
parent | a9a480570f76f5accd41a996a1b69c69179653fb (diff) |
remove "0x" in front of %p in printfs.
eyeballed by krw@
Diffstat (limited to 'sys/arch/mac68k/dev')
-rw-r--r-- | sys/arch/mac68k/dev/if_sn.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mac68k/dev/if_sn.c b/sys/arch/mac68k/dev/if_sn.c index 41ed5e3c7ee..271fb8e7967 100644 --- a/sys/arch/mac68k/dev/if_sn.c +++ b/sys/arch/mac68k/dev/if_sn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_sn.c,v 1.35 2005/01/04 19:53:37 brad Exp $ */ +/* $OpenBSD: if_sn.c,v 1.36 2005/05/22 19:40:51 art Exp $ */ /* $NetBSD: if_sn.c,v 1.13 1997/04/25 03:40:10 briggs Exp $ */ /* @@ -1094,7 +1094,7 @@ sonic_read(sc, pkt, len) #ifdef SNDEBUG { - printf("%s: rcvd 0x%p len=%d type=0x%x from %s", + printf("%s: rcvd %p len=%d type=0x%x from %s", sc->sc_dev.dv_xname, et, len, htons(et->ether_type), ether_sprintf(et->ether_shost)); printf(" (to %s)\n", ether_sprintf(et->ether_dhost)); |