From 1bfc653bbc523c4bd154643ef9d2835c6f050674 Mon Sep 17 00:00:00 2001 From: Doug Rabson Date: Sun, 5 Jul 1998 10:10:33 +0000 Subject: Support 'g' format for printing 8 byte values. --- sys/ddb/db_examine.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'sys/ddb') diff --git a/sys/ddb/db_examine.c b/sys/ddb/db_examine.c index 09f4597b76ec..fbd402b35ea3 100644 --- a/sys/ddb/db_examine.c +++ b/sys/ddb/db_examine.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_examine.c,v 1.20 1998/06/10 10:56:09 dfr Exp $ + * $Id: db_examine.c,v 1.21 1998/06/27 15:39:51 dfr Exp $ */ /* @@ -96,6 +96,10 @@ db_examine(addr, fmt, count) size = 4; width = 16; break; + case 'g': + size = 8; + width = 32; + break; case 'a': /* address */ /* always forces a new line */ if (db_print_position() != 0) -- cgit v1.2.3