diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2010-01-05 12:17:55 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2010-01-05 12:17:55 +0000 |
commit | 723d25dd71d2787a0ec8a189ee7330c5374f729b (patch) | |
tree | 7f2ca1e771d340ddbdef1c024bd43cc6caac6d6b /sys/dev | |
parent | e20f1949b10b578e6ecefcd73c91e3c57b6d7c59 (diff) |
dont need to end statements with two semicolons. one is enough.
pointed out by miod@ and claudio@
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/atapiscsi/atapiscsi.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/atapiscsi/atapiscsi.c b/sys/dev/atapiscsi/atapiscsi.c index f6a03fe4ea1..83de610b14b 100644 --- a/sys/dev/atapiscsi/atapiscsi.c +++ b/sys/dev/atapiscsi/atapiscsi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: atapiscsi.c,v 1.85 2010/01/05 00:16:30 dlg Exp $ */ +/* $OpenBSD: atapiscsi.c,v 1.86 2010/01/05 12:17:54 dlg Exp $ */ /* * This code is derived from code with the copyright below. @@ -327,7 +327,7 @@ wdc_atapi_send_cmd(sc_xfer) struct channel_softc *chp = as->chp; struct ata_drive_datas *drvp = &chp->ch_drive[as->drive]; struct wdc_xfer *xfer; - int s, ret = SUCCESSFULLY_QUEUED;; + int s, ret = SUCCESSFULLY_QUEUED; int idx; WDCDEBUG_PRINT(("wdc_atapi_send_cmd %s:%d:%d start\n", |