Return-Path: X-Original-To: apmail-corinthia-commits-archive@minotaur.apache.org Delivered-To: apmail-corinthia-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C097F17714 for ; Sat, 1 Aug 2015 19:17:48 +0000 (UTC) Received: (qmail 80420 invoked by uid 500); 1 Aug 2015 19:17:48 -0000 Delivered-To: apmail-corinthia-commits-archive@corinthia.apache.org Received: (qmail 80400 invoked by uid 500); 1 Aug 2015 19:17:48 -0000 Mailing-List: contact commits-help@corinthia.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@corinthia.incubator.apache.org Delivered-To: mailing list commits@corinthia.incubator.apache.org Received: (qmail 80391 invoked by uid 99); 1 Aug 2015 19:17:48 -0000 Received: from Unknown (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 01 Aug 2015 19:17:48 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 3EA92C0617 for ; Sat, 1 Aug 2015 19:17:48 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.77 X-Spam-Level: * X-Spam-Status: No, score=1.77 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, T_RP_MATCHES_RCVD=-0.01] autolearn=disabled Received: from mx1-eu-west.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id VkEjm5jH6ilC for ; Sat, 1 Aug 2015 19:17:47 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-eu-west.apache.org (ASF Mail Server at mx1-eu-west.apache.org) with SMTP id 99A5E210B2 for ; Sat, 1 Aug 2015 19:17:46 +0000 (UTC) Received: (qmail 80386 invoked by uid 99); 1 Aug 2015 19:17:45 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 01 Aug 2015 19:17:45 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8CDF4DFBA4; Sat, 1 Aug 2015 19:17:45 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jani@apache.org To: commits@corinthia.incubator.apache.org Date: Sat, 01 Aug 2015 19:17:46 -0000 Message-Id: <438370adc31846a299d74747af6d0c30@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/2] incubator-corinthia git commit: changed FILE * to void * changed FILE * to void * Project: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/commit/b53aa9e0 Tree: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/tree/b53aa9e0 Diff: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/diff/b53aa9e0 Branch: refs/heads/newZipExperiment2 Commit: b53aa9e01cf00315fa0a716f278af621733d53f3 Parents: 11313b2 Author: jani Authored: Sat Aug 1 21:17:28 2015 +0200 Committer: jani Committed: Sat Aug 1 21:17:28 2015 +0200 ---------------------------------------------------------------------- DocFormats/headers/DFPlatform.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/b53aa9e0/DocFormats/headers/DFPlatform.h ---------------------------------------------------------------------- diff --git a/DocFormats/headers/DFPlatform.h b/DocFormats/headers/DFPlatform.h index ef7cc4d..3eee304 100644 --- a/DocFormats/headers/DFPlatform.h +++ b/DocFormats/headers/DFPlatform.h @@ -79,7 +79,7 @@ typedef struct { } DFextZipDirEntry; typedef DFextZipDirEntry * DFextZipDirEntryP; typedef struct { - FILE *zipFile; // file handle to zip file + void *zipFile; // file handle to zip file int zipFileCount; // number of entries in array DFextZipDirEntry *zipFileEntries; // array with filenames in zip } DFextZipHandle;