diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-08-06 21:08:09 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-08-06 21:08:09 +0000 |
commit | 8f4be4c9fc053e06d8170659c9bde356ada1a655 (patch) | |
tree | d116498a9604b21bf16d82850fcf1726939a4f6a /sys/arch/vax | |
parent | 9293e104f0b834487ffef8344f12e9dc93c0abd0 (diff) |
Remove some double semicolons (hmm, do two semis equal a maxi?).
I've skipped the GNU stuff for now. From Patrick Latifi.
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/uba/ts.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/vax/uba/ts.c b/sys/arch/vax/uba/ts.c index cfdd47cb9bb..a2fe2a03b33 100644 --- a/sys/arch/vax/uba/ts.c +++ b/sys/arch/vax/uba/ts.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ts.c,v 1.12 2003/06/02 23:27:58 millert Exp $ */ +/* $OpenBSD: ts.c,v 1.13 2003/08/06 21:08:06 millert Exp $ */ /* $NetBSD: ts.c,v 1.11 1997/01/11 11:34:43 ragge Exp $ */ /*- @@ -402,7 +402,7 @@ tscommand (dev, cmd, count) debug (("tscommand: direct return, no biowait.\n")); return; } - debug (("tscommand: calling biowait ...\n"));; + debug (("tscommand: calling biowait ...\n")); biowait (bp); if (bp->b_flags & B_WANTED) wakeup ((caddr_t)bp); |