From: Eric Blake Date: Wed, 27 Apr 2011 16:46:12 +0000 (-0600) Subject: build: fix 32-bit test failure X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=8a6e30f124a65bd7e92b36d20b4dc6b0a2a03b51;p=libvirt.git build: fix 32-bit test failure Same fix as commit 1fc288e1e25. * tests/hashtest.c (testHashRemoveForEach): Use correct format. --- diff --git a/tests/hashtest.c b/tests/hashtest.c index 414832eaca..bb3a8128df 100644 --- a/tests/hashtest.c +++ b/tests/hashtest.c @@ -360,7 +360,7 @@ testHashForEach(const void *data ATTRIBUTE_UNUSED) if (count != ARRAY_CARDINALITY(uuids)) { if (virTestGetVerbose()) { testError("\nvirHashForEach didn't go through all entries," - " %d != %lu\n", + " %d != %zu\n", count, ARRAY_CARDINALITY(uuids)); } goto cleanup;