diff options
Diffstat (limited to 'sys/ddb/db_sym.c')
| -rw-r--r-- | sys/ddb/db_sym.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/ddb/db_sym.c b/sys/ddb/db_sym.c index 40f365187f37..5caf478af7ee 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); |
