diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2007-02-08 03:20:53 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2007-02-08 03:20:53 +0000 |
commit | 7fc80487e4b453fc1d9fb8c179628f873f220408 (patch) | |
tree | a838dcbd39a9526f89ee3565b089aeb94c0ec325 /sys/dev/ic/mfi.c | |
parent | 59aeb4ed13b43d4686d8a9b72f7c55260ae5b36d (diff) |
Remove double semicolons.
From Pierre Riteau <pierre dot riteau at free dot fr>.
OK marco@.
Diffstat (limited to 'sys/dev/ic/mfi.c')
-rw-r--r-- | sys/dev/ic/mfi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/mfi.c b/sys/dev/ic/mfi.c index acadedde045..d9ad56aef8c 100644 --- a/sys/dev/ic/mfi.c +++ b/sys/dev/ic/mfi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mfi.c,v 1.67 2006/12/23 17:46:39 deraadt Exp $ */ +/* $OpenBSD: mfi.c,v 1.68 2007/02/08 03:20:52 ray Exp $ */ /* * Copyright (c) 2006 Marco Peereboom <marco@peereboom.us> * @@ -1575,7 +1575,7 @@ mfi_ioctl_blink(struct mfi_softc *sc, struct bioc_blink *bb) memset(mbox, 0, sizeof mbox); - *((uint16_t *)&mbox) = pd->mpl_address[i].mpa_pd_id;; + *((uint16_t *)&mbox) = pd->mpl_address[i].mpa_pd_id; switch (bb->bb_status) { case BIOC_SBUNBLINK: @@ -1632,7 +1632,7 @@ mfi_ioctl_setstate(struct mfi_softc *sc, struct bioc_setstate *bs) memset(mbox, 0, sizeof mbox); - *((uint16_t *)&mbox) = pd->mpl_address[i].mpa_pd_id;; + *((uint16_t *)&mbox) = pd->mpl_address[i].mpa_pd_id; switch (bs->bs_status) { case BIOC_SSONLINE: |