From owner-svn-soc-all@FreeBSD.ORG Wed Jul 10 15:37:59 2013 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8F2C1755 for ; Wed, 10 Jul 2013 15:37:59 +0000 (UTC) (envelope-from dpl@FreeBSD.org) Received: from socsvn.freebsd.org (socsvn.freebsd.org [IPv6:2001:1900:2254:206a::50:2]) by mx1.freebsd.org (Postfix) with ESMTP id 811371802 for ; Wed, 10 Jul 2013 15:37:59 +0000 (UTC) Received: from socsvn.freebsd.org ([127.0.1.124]) by socsvn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6AFbxlP097806 for ; Wed, 10 Jul 2013 15:37:59 GMT (envelope-from dpl@FreeBSD.org) Received: (from www@localhost) by socsvn.freebsd.org (8.14.7/8.14.6/Submit) id r6AFbxbZ097801 for svn-soc-all@FreeBSD.org; Wed, 10 Jul 2013 15:37:59 GMT (envelope-from dpl@FreeBSD.org) Date: Wed, 10 Jul 2013 15:37:59 GMT Message-Id: <201307101537.r6AFbxbZ097801@socsvn.freebsd.org> X-Authentication-Warning: socsvn.freebsd.org: www set sender to dpl@FreeBSD.org using -f From: dpl@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r254569 - soc2013/dpl/head/contrib/xz/src/xz MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Jul 2013 15:37:59 -0000 Author: dpl Date: Wed Jul 10 15:37:59 2013 New Revision: 254569 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=254569 Log: We don't need this here. We will just declare the array dynamically when we know the number of files to use. Modified: soc2013/dpl/head/contrib/xz/src/xz/file_io.h Modified: soc2013/dpl/head/contrib/xz/src/xz/file_io.h ============================================================================== --- soc2013/dpl/head/contrib/xz/src/xz/file_io.h Wed Jul 10 15:23:54 2013 (r254568) +++ soc2013/dpl/head/contrib/xz/src/xz/file_io.h Wed Jul 10 15:37:59 2013 (r254569) @@ -63,8 +63,6 @@ } file_pair; -/// All the opened files. -file_pair *all_pairs; /// \brief Initialize the I/O module extern void io_init(void);