diff options
| author | 2004-03-15 12:56:29 +0000 | |
|---|---|---|
| committer | 2004-03-15 12:56:29 +0000 | |
| commit | 14b2c62c06dd5d3b33bf3c4c05e6aa3f94be443d (patch) | |
| tree | 740d915227f862cacd8507252c41c80fc11e4a5a /sys/ddb/db_command.c | |
| parent | properly check chdir success after chroot() and tweak err msgs a little, (diff) | |
| download | wireguard-openbsd-14b2c62c06dd5d3b33bf3c4c05e6aa3f94be443d.tar.xz wireguard-openbsd-14b2c62c06dd5d3b33bf3c4c05e6aa3f94be443d.zip | |
Remove errant semi-colon. miod@ ok
Diffstat (limited to 'sys/ddb/db_command.c')
| -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'); |
