diff options
author | phk <phk@FreeBSD.org> | 1996-01-21 16:30:43 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1996-01-21 16:30:43 +0000 |
commit | db9288fd24b66f5a0b69155f933ae57f866a5be6 (patch) | |
tree | 87b8af46f1c1c569bde9990eec4136d56f11fdad /sys/ddb/db_print.c | |
parent | 7d4c7f2cfa07a9d7813044718be4995c59b8ee29 (diff) | |
download | FreeBSD-src-db9288fd24b66f5a0b69155f933ae57f866a5be6.zip FreeBSD-src-db9288fd24b66f5a0b69155f933ae57f866a5be6.tar.gz |
One missed printf in the debugger.
Found By: bde
Diffstat (limited to 'sys/ddb/db_print.c')
-rw-r--r-- | sys/ddb/db_print.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_print.c b/sys/ddb/db_print.c index 8958b07..a4d8d70 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"); } |