summaryrefslogtreecommitdiffstats
path: root/sys/ddb/db_print.c
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1998-06-08 02:15:37 +0000
committerbde <bde@FreeBSD.org>1998-06-08 02:15:37 +0000
commit2f5fcc4998d0a0b1124c1760f138d5061a8d6696 (patch)
tree91ed39da4b75caf99c433b93d819991f004f4e66 /sys/ddb/db_print.c
parent9ac818096cbf8e4929ec5b5b1fd7a3a6100e295a (diff)
downloadFreeBSD-src-2f5fcc4998d0a0b1124c1760f138d5061a8d6696.zip
FreeBSD-src-2f5fcc4998d0a0b1124c1760f138d5061a8d6696.tar.gz
Backed out previous commit, which just consisted of a 1-byte editing
error.
Diffstat (limited to 'sys/ddb/db_print.c')
-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 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);
OpenPOWER on IntegriCloud