aboutsummaryrefslogtreecommitdiff
path: root/sys/ddb/db_sym.c
diff options
context:
space:
mode:
authorDoug Rabson <dfr@FreeBSD.org>1998-06-10 10:57:29 +0000
committerDoug Rabson <dfr@FreeBSD.org>1998-06-10 10:57:29 +0000
commit897cd717a56fada7bcdb663c761885013df84a20 (patch)
treea452ee9b49edc4a7a01b5f26baa2798217a67923 /sys/ddb/db_sym.c
parent8c12612cf6d4265be5c54e20f768e6fd697fd1b3 (diff)
Notes
Diffstat (limited to 'sys/ddb/db_sym.c')
-rw-r--r--sys/ddb/db_sym.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/ddb/db_sym.c b/sys/ddb/db_sym.c
index 40f365187f378..5caf478af7eeb 100644
--- a/sys/ddb/db_sym.c
+++ b/sys/ddb/db_sym.c
@@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: db_sym.c,v 1.20 1997/06/30 23:54:49 bde Exp $
+ * $Id: db_sym.c,v 1.21 1998/06/07 17:09:38 dfr Exp $
*/
/*
@@ -300,11 +300,11 @@ db_printsym(off, strategy)
if (name == 0)
value = off;
if (value >= DB_SMALL_VALUE_MIN && value <= DB_SMALL_VALUE_MAX) {
- db_printf("%+#n", off);
+ db_printf("%+#ln", off);
return;
}
if (name == 0 || d >= db_maxoff) {
- db_printf("%#n", off);
+ db_printf("%#ln", off);
return;
}
db_printf("%s", name);