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 A458917F24 for ; Mon, 23 Feb 2015 11:39:27 +0000 (UTC) Received: (qmail 11647 invoked by uid 500); 23 Feb 2015 11:39:27 -0000 Delivered-To: apmail-corinthia-commits-archive@corinthia.apache.org Received: (qmail 11599 invoked by uid 500); 23 Feb 2015 11:39:27 -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 11535 invoked by uid 99); 23 Feb 2015 11:39:27 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 23 Feb 2015 11:39:27 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO mail.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 23 Feb 2015 11:39:26 +0000 Received: (qmail 10919 invoked by uid 99); 23 Feb 2015 11:39:05 -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; Mon, 23 Feb 2015 11:39:05 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id A781FE0F5A; Mon, 23 Feb 2015 11:39:04 +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: Mon, 23 Feb 2015 11:39:32 -0000 Message-Id: <3d932bf9c7e849e4b9b6bb37b3398f20@git.apache.org> In-Reply-To: <77140ba3f89a4998955f9c1ca109d3c4@git.apache.org> References: <77140ba3f89a4998955f9c1ca109d3c4@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [29/31] incubator-corinthia git commit: Patch from Gabriela, removed compiler warning X-Virus-Checked: Checked by ClamAV on apache.org Patch from Gabriela, removed compiler warning Project: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/commit/dab820a5 Tree: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/tree/dab820a5 Diff: http://git-wip-us.apache.org/repos/asf/incubator-corinthia/diff/dab820a5 Branch: refs/heads/experimentzip Commit: dab820a5e2515019b0817f8db5fc49eb2560f6e5 Parents: 0c34c1a Author: jani Authored: Mon Feb 23 12:20:14 2015 +0100 Committer: jani Committed: Mon Feb 23 12:20:14 2015 +0100 ---------------------------------------------------------------------- consumers/dfutil/src/Commands.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-corinthia/blob/dab820a5/consumers/dfutil/src/Commands.c ---------------------------------------------------------------------- diff --git a/consumers/dfutil/src/Commands.c b/consumers/dfutil/src/Commands.c index 4b74a49..5e633c5 100644 --- a/consumers/dfutil/src/Commands.c +++ b/consumers/dfutil/src/Commands.c @@ -344,7 +344,7 @@ int diffFiles(const char *filename1, const char *filename2, DFError **error) void parseContent(const char *content) { DFArray *parts = CSSParseContent(content); - printf("parts.count = %lu\n",DFArrayCount(parts)); + printf("parts.count = %zu\n",DFArrayCount(parts)); for (size_t i = 0; i < DFArrayCount(parts); i++) { ContentPart *part = DFArrayItemAt(parts,i); char *quotedValue = DFQuote(part->value);