aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnji Cooper <ngie@FreeBSD.org>2017-02-24 06:28:58 +0000
committerEnji Cooper <ngie@FreeBSD.org>2017-02-24 06:28:58 +0000
commit29d14889f501acf336eb071df55cfc1adaea743a (patch)
treea9260c89dce1e85190a02545ada12a90574b39d4
parent69c703b9c4099a03691129143c7870065020ca3f (diff)
downloadsrc-29d14889f501acf336eb071df55cfc1adaea743a.tar.gz
src-29d14889f501acf336eb071df55cfc1adaea743a.zip
Fix some minor style nits: put parentheses around return values
MFC after: 2 weeks Sponsored by: Dell EMC Isilon
Notes
Notes: svn path=/head/; revision=314190
-rw-r--r--lib/libcam/scsi_cmdparse.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/libcam/scsi_cmdparse.c b/lib/libcam/scsi_cmdparse.c
index dfbc8de4c72c..582d29d4b612 100644
--- a/lib/libcam/scsi_cmdparse.c
+++ b/lib/libcam/scsi_cmdparse.c
@@ -530,7 +530,7 @@ next_field(const char **pp, char *fmt, int *width_p, int *value_p, char *name,
if (is_error) {
*error_p = 1;
- return 0;
+ return (0);
}
*error_p = 0;
@@ -659,9 +659,9 @@ do_encode(u_char *buff, size_t vec_max, size_t *used,
*used = ind;
if (error)
- return -1;
+ return (-1);
- return encoded;
+ return (encoded);
}
int
@@ -723,7 +723,7 @@ buff_decode_visit(u_int8_t *buff, size_t len, const char *fmt,
* the arg_put function.
*/
if (arg_put == NULL)
- return(-1);
+ return (-1);
return (do_buff_decode(buff, len, arg_put, puthook, fmt, NULL));
}
@@ -779,20 +779,20 @@ csio_build_visit(struct ccb_scsiio *csio, u_int8_t *data_ptr,
int retval;
if (csio == NULL)
- return(0);
+ return (0);
/*
* We need something to encode, but we can't get it without the
* arg_get function.
*/
if (arg_get == NULL)
- return(-1);
+ return (-1);
bzero(csio, sizeof(struct ccb_scsiio));
if ((retval = do_encode(csio->cdb_io.cdb_bytes, SCSI_MAX_CDBLEN,
&cmdlen, arg_get, gethook, cmd_spec, NULL)) == -1)
- return(retval);
+ return (retval);
cam_fill_csio(csio,
/* retries */ retry_count,
@@ -805,7 +805,7 @@ csio_build_visit(struct ccb_scsiio *csio, u_int8_t *data_ptr,
/* cdb_len */ cmdlen,
/* timeout */ timeout ? timeout : 5000);
- return(retval);
+ return (retval);
}
int
@@ -837,7 +837,7 @@ buff_encode_visit(u_int8_t *buff, size_t len, const char *fmt,
* arg_get function.
*/
if (arg_get == NULL)
- return(-1);
+ return (-1);
return (do_encode(buff, len, NULL, arg_get, gethook, fmt, NULL));
}
@@ -852,7 +852,7 @@ csio_encode_visit(struct ccb_scsiio *csio, const char *fmt,
* arg_get function.
*/
if (arg_get == NULL)
- return(-1);
+ return (-1);
return (do_encode(csio->data_ptr, csio->dxfer_len, NULL, arg_get,
gethook, fmt, NULL));