summaryrefslogtreecommitdiff
path: root/sys/ddb/db_command.c
diff options
context:
space:
mode:
authorAaron Campbell <aaron@cvs.openbsd.org>2004-03-15 12:56:30 +0000
committerAaron Campbell <aaron@cvs.openbsd.org>2004-03-15 12:56:30 +0000
commitb86a7805dd5035da4e92d196580ba76443810adc (patch)
tree21e5bebca3974915d92f47d20d84569ca211dac5 /sys/ddb/db_command.c
parent92325dffa62df45e62407cd360262228112ea0d1 (diff)
Remove errant semi-colon. miod@ ok
Diffstat (limited to 'sys/ddb/db_command.c')
-rw-r--r--sys/ddb/db_command.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_command.c b/sys/ddb/db_command.c
index 819985b2553..caf9460f5c5 100644
--- a/sys/ddb/db_command.c
+++ b/sys/ddb/db_command.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_command.c,v 1.33 2004/03/10 23:02:53 tom Exp $ */
+/* $OpenBSD: db_command.c,v 1.34 2004/03/15 12:56:29 aaron Exp $ */
/* $NetBSD: db_command.c,v 1.20 1996/03/30 22:30:05 christos Exp $ */
/*
@@ -683,7 +683,7 @@ db_dmesg_cmd(addr, haddr, count, modif)
i < msgbufp->msg_bufs; i++, p++) {
if (p > msgbufp->msg_bufc + msgbufp->msg_bufs)
p = msgbufp->msg_bufc;
- if (*p != '\0');
+ if (*p != '\0')
db_putchar(*p);
}
db_putchar('\n');