summaryrefslogtreecommitdiffstats
path: root/sys/cam
diff options
context:
space:
mode:
authortrasz <trasz@FreeBSD.org>2016-02-10 17:55:39 +0000
committertrasz <trasz@FreeBSD.org>2016-02-10 17:55:39 +0000
commit97d8d420222cd21928a200566960d593915409db (patch)
treed22d5c8fd1274825b4fa5eec18cd982836c7f9ce /sys/cam
parent352dc891289daae3eacc2ebf348e82c2b142c4b8 (diff)
downloadFreeBSD-src-97d8d420222cd21928a200566960d593915409db.zip
FreeBSD-src-97d8d420222cd21928a200566960d593915409db.tar.gz
Remove stray semicolons from the iSCSI code.
MFC after: 1 month Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'sys/cam')
-rw-r--r--sys/cam/ctl/ctl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/cam/ctl/ctl.c b/sys/cam/ctl/ctl.c
index 4fdaa05..1101d02 100644
--- a/sys/cam/ctl/ctl.c
+++ b/sys/cam/ctl/ctl.c
@@ -5694,7 +5694,7 @@ ctl_write_same(struct ctl_scsiio *ctsio)
*/
if ((byte2 & SWS_NDOB) == 0 &&
(ctsio->io_hdr.flags & CTL_FLAG_ALLOCATED) == 0) {
- ctsio->kern_data_ptr = malloc(len, M_CTL, M_WAITOK);;
+ ctsio->kern_data_ptr = malloc(len, M_CTL, M_WAITOK);
ctsio->kern_data_len = len;
ctsio->kern_total_len = len;
ctsio->kern_data_resid = 0;
@@ -5742,7 +5742,7 @@ ctl_unmap(struct ctl_scsiio *ctsio)
* malloc it and tell the caller the data buffer is here.
*/
if ((ctsio->io_hdr.flags & CTL_FLAG_ALLOCATED) == 0) {
- ctsio->kern_data_ptr = malloc(len, M_CTL, M_WAITOK);;
+ ctsio->kern_data_ptr = malloc(len, M_CTL, M_WAITOK);
ctsio->kern_data_len = len;
ctsio->kern_total_len = len;
ctsio->kern_data_resid = 0;
OpenPOWER on IntegriCloud