diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2004-03-15 12:56:30 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2004-03-15 12:56:30 +0000 |
commit | b86a7805dd5035da4e92d196580ba76443810adc (patch) | |
tree | 21e5bebca3974915d92f47d20d84569ca211dac5 /sys/ddb | |
parent | 92325dffa62df45e62407cd360262228112ea0d1 (diff) |
Remove errant semi-colon. miod@ ok
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 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'); |