svn commit: r272937 - head/sys/dev/isp

Alexander Motin mav at FreeBSD.org
Sat Oct 11 08:50:20 UTC 2014


Author: mav
Date: Sat Oct 11 08:50:19 2014
New Revision: 272937
URL: https://svnweb.freebsd.org/changeset/base/272937

Log:
  Fix r272936 build with old GCC.
  
  MFC after:	1 week

Modified:
  head/sys/dev/isp/isp_library.c

Modified: head/sys/dev/isp/isp_library.c
==============================================================================
--- head/sys/dev/isp/isp_library.c	Sat Oct 11 07:59:15 2014	(r272936)
+++ head/sys/dev/isp/isp_library.c	Sat Oct 11 08:50:19 2014	(r272937)
@@ -2472,7 +2472,8 @@ isp_add_wwn_entry(ispsoftc_t *isp, int c
 
 	lp = NULL;
 	if (fcp->isp_tgt_map[nphdl]) {
-		lp = &fcp->portdb[fcp->isp_tgt_map[nphdl] - 1];
+		i = fcp->isp_tgt_map[nphdl] - 1;
+		lp = &fcp->portdb[i];
 	} else {
 		/*
 		 * Make sure the addition of a new target mode entry doesn't duplicate entries


More information about the svn-src-all mailing list