diff options
author | mjacob <mjacob@cvs.openbsd.org> | 2003-03-03 20:58:47 +0000 |
---|---|---|
committer | mjacob <mjacob@cvs.openbsd.org> | 2003-03-03 20:58:47 +0000 |
commit | 934f23f12bf3ecf647deee6c84339cfe8da4f8f8 (patch) | |
tree | 0f33942e1b233ed57dff6094a21719080f5060b5 | |
parent | 87c38222b99b132902e582f2df2f63d1a0111bc2 (diff) |
nuke extra semicolon
-rw-r--r-- | sys/dev/ic/isp_target.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/isp_target.c b/sys/dev/ic/isp_target.c index a1e8229fb7a..3e74051d5cf 100644 --- a/sys/dev/ic/isp_target.c +++ b/sys/dev/ic/isp_target.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isp_target.c,v 1.10 2003/03/03 18:34:59 mjacob Exp $ */ +/* $OpenBSD: isp_target.c,v 1.11 2003/03/03 20:58:46 mjacob Exp $ */ /* * Machine and OS Independent Target Mode Code for the Qlogic SCSI/FC adapters. * @@ -363,7 +363,7 @@ isp_target_put_entry(struct ispsoftc *isp, void *ap) return (-1); } - ISP_TDQE(isp, "isp_target_put_entry", (int) optr, ap);; + ISP_TDQE(isp, "isp_target_put_entry", (int) optr, ap); ISP_ADD_REQUEST(isp, nxti); return (0); } |