diff options
author | 2010-01-05 12:17:54 +0000 | |
---|---|---|
committer | 2010-01-05 12:17:54 +0000 | |
commit | 5c485b8c21831c96d868eef7c95ab82cb9e9893d (patch) | |
tree | 16ffb480d1fcca709d196174ff931346f179ef3c | |
parent | tracker and updater are also auto-cached (diff) | |
download | wireguard-openbsd-5c485b8c21831c96d868eef7c95ab82cb9e9893d.tar.xz wireguard-openbsd-5c485b8c21831c96d868eef7c95ab82cb9e9893d.zip |
dont need to end statements with two semicolons. one is enough.
pointed out by miod@ and claudio@
-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", |