aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>1996-01-21 16:30:43 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>1996-01-21 16:30:43 +0000
commitce723857c42a5fbef8bccba5b4d00452de93b5f5 (patch)
tree87b8af46f1c1c569bde9990eec4136d56f11fdad
parentbc8a32f09c09cb7e48fd6fc3eda8949b441baa45 (diff)
downloadsrc-ce723857c42a5fbef8bccba5b4d00452de93b5f5.tar.gz
src-ce723857c42a5fbef8bccba5b4d00452de93b5f5.zip
One missed printf in the debugger.
Found By: bde
Notes
Notes: svn path=/head/; revision=13533
-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 8958b079e3dd..a4d8d703d494 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.9 1995/12/07 12:44:55 davidg Exp $
+ * $Id: db_print.c,v 1.10 1995/12/10 19:08:06 bde Exp $
*/
/*
@@ -60,7 +60,7 @@ db_show_regs(dummy1, dummy2, dummy3, dummy4)
if (name != 0 && offset <= db_maxoff && offset != value) {
db_printf("\t%s", name);
if (offset != 0)
- db_printf("+%#r", offset);
+ db_printf("+%+#n", offset);
}
db_printf("\n");
}