aboutsummaryrefslogtreecommitdiff
path: root/sys/cam/ctl/ctl.c
diff options
context:
space:
mode:
authorAlexander Motin <mav@FreeBSD.org>2016-12-27 22:31:06 +0000
committerAlexander Motin <mav@FreeBSD.org>2016-12-27 22:31:06 +0000
commit2e0a1f828e3aca3c95a8a6a64f7da887136edd37 (patch)
tree1742311d924a62089c66df24d62021f8e254d6d7 /sys/cam/ctl/ctl.c
parent2c966e8500205a68d9da91636ec450644cacfb0e (diff)
downloadsrc-2e0a1f828e3aca3c95a8a6a64f7da887136edd37.tar.gz
src-2e0a1f828e3aca3c95a8a6a64f7da887136edd37.zip
Fix/synchronize field types in struct ctl_modepage_header.
MFC after: 2 weeks
Notes
Notes: svn path=/head/; revision=310644
Diffstat (limited to 'sys/cam/ctl/ctl.c')
-rw-r--r--sys/cam/ctl/ctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/cam/ctl/ctl.c b/sys/cam/ctl/ctl.c
index 96f1fcceb486..fc3a4f8f1793 100644
--- a/sys/cam/ctl/ctl.c
+++ b/sys/cam/ctl/ctl.c
@@ -5939,7 +5939,7 @@ ctl_do_mode_select(union ctl_io *io)
int page_len, page_len_offset, page_len_size;
union ctl_modepage_info *modepage_info;
struct ctl_lun *lun;
- int *len_left, *len_used;
+ uint16_t *len_left, *len_used;
int retval, i;
ctsio = &io->scsiio;