From 19f97afda60a3343ef6e4ede2d96dd39b8a6b6ce Mon Sep 17 00:00:00 2001 From: bde Date: Sun, 21 Jan 1996 19:18:46 +0000 Subject: [PATCH] Fixed the one remaining %r. --- sys/ddb/db_examine.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/ddb/db_examine.c b/sys/ddb/db_examine.c index ce7cff602cf4..1f4de6a30f69 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.12 1995/12/10 19:07:55 bde Exp $ + * $Id: db_examine.c,v 1.13 1996/01/15 22:39:32 phk Exp $ */ /* @@ -117,7 +117,7 @@ db_examine(addr, fmt, count) case 'r': /* signed, current radix */ value = db_get_value(addr, size, TRUE); addr += size; - db_printf("%-*r", width, value); + db_printf("%+-*n", width, value); break; case 'x': /* unsigned hex */ value = db_get_value(addr, size, FALSE);