From 2f5fcc4998d0a0b1124c1760f138d5061a8d6696 Mon Sep 17 00:00:00 2001 From: bde Date: Mon, 8 Jun 1998 02:15:37 +0000 Subject: Backed out previous commit, which just consisted of a 1-byte editing error. --- sys/ddb/db_print.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sys/ddb/db_print.c') diff --git a/sys/ddb/db_print.c b/sys/ddb/db_print.c index 8140d43..114cf00 100644 --- a/sys/ddb/db_print.c +++ b/sys/ddb/db_print.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_print.c,v 1.17 1998/05/28 09:29:50 phk Exp $ + * $Id: db_print.c,v 1.18 1998/06/07 17:09:37 dfr Exp $ */ /* @@ -55,7 +55,7 @@ db_show_regs(dummy1, dummy2, dummy3, dummy4) db_read_variable(regp, &value); db_printf("%-12s%#10n", regp->name, value); db_find_xtrn_sym_and_offset((db_addr_t)value, &name, &offset); - if (name != 0 && offset <= db_maxoff && offset != value) { + if (name != 0 && offset <= db_maxoff && offset != value) { db_printf("\t%s", name); if (offset != 0) db_printf("+%+#n", offset); -- cgit v1.1