diff options
| author | 1996-04-21 22:14:33 +0000 | |
|---|---|---|
| committer | 1996-04-21 22:14:33 +0000 | |
| commit | d724e01ae4dac35949585b9083e28ff2ba35b0b5 (patch) | |
| tree | 37282f1ae947a4e9508b73ff86cad13f75eb9860 /sys/ddb/db_examine.c | |
| parent | no need to remove limits.h; another workaround exists (diff) | |
| download | wireguard-openbsd-d724e01ae4dac35949585b9083e28ff2ba35b0b5.tar.xz wireguard-openbsd-d724e01ae4dac35949585b9083e28ff2ba35b0b5.zip | |
partial sync with netbsd 960418, more to come
Diffstat (limited to 'sys/ddb/db_examine.c')
| -rw-r--r-- | sys/ddb/db_examine.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/ddb/db_examine.c b/sys/ddb/db_examine.c index 4f673d9141c..cca67eea3f6 100644 --- a/sys/ddb/db_examine.c +++ b/sys/ddb/db_examine.c @@ -1,4 +1,5 @@ -/* $OpenBSD: db_examine.c,v 1.3 1996/03/11 11:16:05 mickey Exp $ */ +/* $OpenBSD: db_examine.c,v 1.4 1996/04/21 22:18:59 deraadt Exp $ */ +/* $NetBSD: db_examine.c,v 1.11 1996/03/30 22:30:07 christos Exp $ */ /* * Mach Operating System @@ -107,7 +108,7 @@ db_examine(addr, fmt, count) width = 12; break; case 'a': /* address */ - db_printf("= 0x%x\n", addr); + db_printf("= 0x%lx\n", addr); break; case 'r': /* signed, current radix */ value = db_get_value(addr, size, TRUE); |
