aboutsummaryrefslogtreecommitdiff
path: root/sys/ddb
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-06-08 02:15:37 +0000
committerBruce Evans <bde@FreeBSD.org>1998-06-08 02:15:37 +0000
commitd85b9b2c4a3675ad532c17fd00399444da2dfede (patch)
treedb7e45fd957d060709d8affde60f7799613e3625 /sys/ddb
parent8fe48b7aedcdda264f1bceb1c62699f995f10a91 (diff)
Notes
Diffstat (limited to 'sys/ddb')
-rw-r--r--sys/ddb/db_print.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_print.c b/sys/ddb/db_print.c
index 8140d43820cd..114cf00a9d51 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);