summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>1998-08-04 22:35:05 +0000
committermillert <millert@openbsd.org>1998-08-04 22:35:05 +0000
commiteb6d88f997bc517cc9d37d735eabde20c7ac5de6 (patch)
tree9dd1f66d5fe09cc2fa261ff3a9c739ab4dd6df72
parentmake b_resid size_t (diff)
downloadwireguard-openbsd-eb6d88f997bc517cc9d37d735eabde20c7ac5de6.tar.xz
wireguard-openbsd-eb6d88f997bc517cc9d37d735eabde20c7ac5de6.zip
make resid size_t
-rw-r--r--sys/scsi/scsiconf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/scsi/scsiconf.h b/sys/scsi/scsiconf.h
index a315b0121f5..4542134864b 100644
--- a/sys/scsi/scsiconf.h
+++ b/sys/scsi/scsiconf.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: scsiconf.h,v 1.15 1998/02/16 21:23:26 deraadt Exp $ */
+/* $OpenBSD: scsiconf.h,v 1.16 1998/08/04 22:35:05 millert Exp $ */
/* $NetBSD: scsiconf.h,v 1.35 1997/04/02 02:29:38 mycroft Exp $ */
/*
@@ -220,7 +220,7 @@ struct scsi_xfer {
int cmdlen; /* how long it is */
u_char *data; /* dma address OR a uio address */
int datalen; /* data len (blank if uio) */
- int resid; /* how much buffer was not touched */
+ size_t resid; /* how much buffer was not touched */
int error; /* an error value */
struct buf *bp; /* If we need to associate with a buf */
struct scsi_sense_data sense; /* 32 bytes*/