Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 5 Dec 2014 07:48:22 +0000 (UTC)
From:      Alexander Motin <mav@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-10@freebsd.org
Subject:   svn commit: r275498 - stable/10/sys/dev/isp
Message-ID:  <201412050748.sB57mMKJ048570@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mav
Date: Fri Dec  5 07:48:22 2014
New Revision: 275498
URL: https://svnweb.freebsd.org/changeset/base/275498

Log:
  MFC r272937: Fix r272936 build with old GCC.

Modified:
  stable/10/sys/dev/isp/isp_library.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/isp/isp_library.c
==============================================================================
--- stable/10/sys/dev/isp/isp_library.c	Fri Dec  5 07:46:28 2014	(r275497)
+++ stable/10/sys/dev/isp/isp_library.c	Fri Dec  5 07:48:22 2014	(r275498)
@@ -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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201412050748.sB57mMKJ048570>