svn commit: r268330 - head/sys/cam/ctl

Andreas Tobler andreast at FreeBSD.org
Sun Jul 6 20:09:24 UTC 2014


Author: andreast
Date: Sun Jul  6 20:09:23 2014
New Revision: 268330
URL: http://svnweb.freebsd.org/changeset/base/268330

Log:
  Make gcc happy, init idlen2.

Modified:
  head/sys/cam/ctl/ctl.c

Modified: head/sys/cam/ctl/ctl.c
==============================================================================
--- head/sys/cam/ctl/ctl.c	Sun Jul  6 18:16:04 2014	(r268329)
+++ head/sys/cam/ctl/ctl.c	Sun Jul  6 20:09:23 2014	(r268330)
@@ -4336,7 +4336,7 @@ ctl_alloc_lun(struct ctl_softc *ctl_soft
 	struct scsi_vpd_id_t10 *t10id;
 	const char *scsiname, *vendor;
 	int lun_number, i, lun_malloced;
-	int devidlen, idlen1, idlen2, len;
+	int devidlen, idlen1, idlen2 = 0, len;
 
 	if (be_lun == NULL)
 		return (EINVAL);


More information about the svn-src-head mailing list