diff options
author | dg <dg@FreeBSD.org> | 1995-03-19 14:29:26 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1995-03-19 14:29:26 +0000 |
commit | 9cd78521d8c98c1054f6865820ad07469edac8fd (patch) | |
tree | 589f9b4a28e25de36e0344457a8c795333f7c011 /sys/ddb | |
parent | f572de6775d26857d37278e33ea582d10a09d384 (diff) | |
download | FreeBSD-src-9cd78521d8c98c1054f6865820ad07469edac8fd.zip FreeBSD-src-9cd78521d8c98c1054f6865820ad07469edac8fd.tar.gz |
Removed redundant newlines that were in some panic strings.
Diffstat (limited to 'sys/ddb')
-rw-r--r-- | sys/ddb/db_command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c index 4aded1d..1613ab9 100644 --- a/sys/ddb/db_command.c +++ b/sys/ddb/db_command.c @@ -23,7 +23,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: db_command.c,v 1.10 1995/03/05 22:56:21 joerg Exp $ + * $Id: db_command.c,v 1.11 1995/03/16 18:10:59 bde Exp $ */ /* @@ -390,7 +390,7 @@ db_help_cmd() void db_panic() { - panic("from debugger\n"); + panic("from debugger"); } void |