diff options
author | 1997-02-06 15:51:13 +0000 | |
---|---|---|
committer | 1997-02-06 15:51:13 +0000 | |
commit | 7b55c5cb52f5a1791c9dc2e8fa8cfc552be82bb8 (patch) | |
tree | 99856fd9b9dc5095a68ed933d3ec219a87cd29d4 | |
parent | corrected to look even more like date(1) (diff) | |
download | wireguard-openbsd-7b55c5cb52f5a1791c9dc2e8fa8cfc552be82bb8.tar.xz wireguard-openbsd-7b55c5cb52f5a1791c9dc2e8fa8cfc552be82bb8.zip |
print 0x for %p
-rw-r--r-- | sys/lib/libsa/printf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/lib/libsa/printf.c b/sys/lib/libsa/printf.c index b1f4568afa2..b20bcdeee4b 100644 --- a/sys/lib/libsa/printf.c +++ b/sys/lib/libsa/printf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: printf.c,v 1.8 1997/02/06 14:26:08 mickey Exp $ */ +/* $OpenBSD: printf.c,v 1.9 1997/02/06 15:51:13 mickey Exp $ */ /* $NetBSD: printf.c,v 1.10 1996/11/30 04:19:21 gwr Exp $ */ /*- @@ -206,6 +206,8 @@ reswitch: switch (ch = *fmt++) { kprintn(put, ul, 10); break; case 'p': + putchar('0'); + putchar('x'); lflag += sizeof(void *)==sizeof(u_long)? 1 : 0; case 'x': ul = lflag ? |