Take care of WARNS=3 warnings by using unsigned/signed variable

as needed.

Approved by:	ken, sheldonh (mentor)
This commit is contained in:
Johan Karlsson 2002-08-20 20:54:03 +00:00
parent 004998bc66
commit 72abe188fb

View File

@ -279,7 +279,8 @@ static int
getdevtree(void) getdevtree(void)
{ {
union ccb ccb; union ccb ccb;
int bufsize, i, fd; int bufsize, fd;
unsigned int i;
int need_close = 0; int need_close = 0;
int error = 0; int error = 0;
int skip_device = 0; int skip_device = 0;
@ -1089,7 +1090,7 @@ rescan_or_reset_bus(int bus, int rescan)
matchccb.cdm.patterns[0].pattern.bus_pattern.flags = BUS_MATCH_ANY; matchccb.cdm.patterns[0].pattern.bus_pattern.flags = BUS_MATCH_ANY;
do { do {
int i; unsigned int i;
if (ioctl(fd, CAMIOCOMMAND, &matchccb) == -1) { if (ioctl(fd, CAMIOCOMMAND, &matchccb) == -1) {
warn("CAMIOCOMMAND ioctl failed"); warn("CAMIOCOMMAND ioctl failed");
@ -1119,7 +1120,7 @@ rescan_or_reset_bus(int bus, int rescan)
* We don't want to rescan or reset the xpt bus. * We don't want to rescan or reset the xpt bus.
* See above. * See above.
*/ */
if (bus_result->path_id == -1) if ((int)bus_result->path_id == -1)
continue; continue;
ccb.ccb_h.func_code = rescan ? XPT_SCAN_BUS : ccb.ccb_h.func_code = rescan ? XPT_SCAN_BUS :
@ -1272,7 +1273,7 @@ readdefects(struct cam_device *device, int argc, char **argv,
u_int32_t returned_length = 0; u_int32_t returned_length = 0;
u_int32_t num_returned = 0; u_int32_t num_returned = 0;
u_int8_t returned_format; u_int8_t returned_format;
int i; unsigned int i;
int c, error = 0; int c, error = 0;
int lists_specified = 0; int lists_specified = 0;
@ -1851,7 +1852,7 @@ scsicmd(struct cam_device *device, int argc, char **argv, char *combinedopt,
* read the data the user wants written from stdin. * read the data the user wants written from stdin.
*/ */
if ((fd_data == 1) && (arglist & CAM_ARG_CMD_OUT)) { if ((fd_data == 1) && (arglist & CAM_ARG_CMD_OUT)) {
size_t amt_read; ssize_t amt_read;
int amt_to_read = data_bytes; int amt_to_read = data_bytes;
u_int8_t *buf_ptr = data_ptr; u_int8_t *buf_ptr = data_ptr;
@ -1952,7 +1953,7 @@ scsicmd(struct cam_device *device, int argc, char **argv, char *combinedopt,
arg_put, NULL); arg_put, NULL);
fprintf(stdout, "\n"); fprintf(stdout, "\n");
} else { } else {
size_t amt_written; ssize_t amt_written;
int amt_to_write = data_bytes; int amt_to_write = data_bytes;
u_int8_t *buf_ptr = data_ptr; u_int8_t *buf_ptr = data_ptr;