You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@corinthia.apache.org by ja...@apache.org on 2015/02/23 12:39:32 UTC

[29/31] incubator-corinthia git commit: Patch from Gabriela, removed compiler warning

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 <ja...@apache.org>
Authored: Mon Feb 23 12:20:14 2015 +0100
Committer: jani <ja...@apache.org>
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);