summaryrefslogtreecommitdiffstats
path: root/sys/ddb/db_examine.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/ddb/db_examine.c')
-rw-r--r--sys/ddb/db_examine.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_examine.c b/sys/ddb/db_examine.c
index 377316a..ccc5ebd 100644
--- a/sys/ddb/db_examine.c
+++ b/sys/ddb/db_examine.c
@@ -129,7 +129,7 @@ db_examine(addr, fmt, count)
case 'z': /* signed hex */
value = db_get_value(addr, size, TRUE);
addr += size;
- db_printf("%-*lz", width, (long)value);
+ db_printf("%-*ly", width, (long)value);
break;
case 'd': /* signed decimal */
value = db_get_value(addr, size, TRUE);
@@ -213,7 +213,7 @@ db_print_cmd(addr, have_addr, count, modif)
db_printf("%8lx", (unsigned long)addr);
break;
case 'z':
- db_printf("%8lz", (long)addr);
+ db_printf("%8ly", (long)addr);
break;
case 'd':
db_printf("%11ld", (long)addr);
OpenPOWER on IntegriCloud