From owner-svn-src-stable@FreeBSD.ORG Thu Jun 14 06:55:41 2012 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1E665106585C; Thu, 14 Jun 2012 06:55:41 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [69.147.83.44]) by mx1.freebsd.org (Postfix) with ESMTP id 086498FC0C; Thu, 14 Jun 2012 06:55:41 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q5E6tebF076786; Thu, 14 Jun 2012 06:55:40 GMT (envelope-from eadler@svn.freebsd.org) Received: (from eadler@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q5E6teb0076783; Thu, 14 Jun 2012 06:55:40 GMT (envelope-from eadler@svn.freebsd.org) Message-Id: <201206140655.q5E6teb0076783@svn.freebsd.org> From: Eitan Adler Date: Thu, 14 Jun 2012 06:55:40 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org X-SVN-Group: stable-7 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r237051 - stable/7/usr.sbin/mptutil X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jun 2012 06:55:41 -0000 Author: eadler Date: Thu Jun 14 06:55:40 2012 New Revision: 237051 URL: http://svn.freebsd.org/changeset/base/237051 Log: MFC r236287: add missing variable declaration when DEBUG is defined forgotten in r215046 PR: bin/166404 Approved by: cperciva (implicit) Modified: stable/7/usr.sbin/mptutil/mpt_show.c Directory Properties: stable/7/usr.sbin/mptutil/ (props changed) Modified: stable/7/usr.sbin/mptutil/mpt_show.c ============================================================================== --- stable/7/usr.sbin/mptutil/mpt_show.c Thu Jun 14 06:55:16 2012 (r237050) +++ stable/7/usr.sbin/mptutil/mpt_show.c Thu Jun 14 06:55:40 2012 (r237051) @@ -538,7 +538,7 @@ show_physdisks(int ac, char **av) { CONFIG_PAGE_RAID_PHYS_DISK_0 *pinfo; U16 IOCStatus; - int fd, i; + int error, fd, i; if (ac != 1) { warnx("show drives: extra arguments");