svn commit: r228442 - head/sys/cam/scsi
Matthew D Fleming
mdf at FreeBSD.org
Mon Dec 12 18:43:18 UTC 2011
Author: mdf
Date: Mon Dec 12 18:43:18 2011
New Revision: 228442
URL: http://svn.freebsd.org/changeset/base/228442
Log:
Do not use the sometimes-reserved work 'bool' for a variable name.
MFC after: 2 weeks
Sponsored by: Isilon Systems, LLC
Modified:
head/sys/cam/scsi/scsi_xpt.c
Modified: head/sys/cam/scsi/scsi_xpt.c
==============================================================================
--- head/sys/cam/scsi/scsi_xpt.c Mon Dec 12 18:27:34 2011 (r228441)
+++ head/sys/cam/scsi/scsi_xpt.c Mon Dec 12 18:43:18 2011 (r228442)
@@ -1811,14 +1811,14 @@ scsi_find_quirk(struct cam_ed *device)
static int
sysctl_cam_search_luns(SYSCTL_HANDLER_ARGS)
{
- int error, bool;
+ int error, val;
- bool = cam_srch_hi;
- error = sysctl_handle_int(oidp, &bool, 0, req);
+ val = cam_srch_hi;
+ error = sysctl_handle_int(oidp, &val, 0, req);
if (error != 0 || req->newptr == NULL)
return (error);
- if (bool == 0 || bool == 1) {
- cam_srch_hi = bool;
+ if (val == 0 || val == 1) {
+ cam_srch_hi = val;
return (0);
} else {
return (EINVAL);
More information about the svn-src-head
mailing list