Bug 560393, part 1: (places directory) Fix warning: "format '%d' expects type 'int', but argument [N] has type 'size_t'". r=sdwilsh

This commit is contained in:
Daniel Holbert 2010-05-06 11:52:15 -07:00
parent c78cc7b18a
commit 64d359bae4

View File

@ -114,8 +114,8 @@ main(int aArgc,
passed(TEST_FILE);
}
(void)fprintf(stderr, TEST_INFO_STR "%d of %d tests passed\n",
TEST_FILE, gPassedTests, gTotalTests);
(void)fprintf(stderr, TEST_INFO_STR "%u of %u tests passed\n",
TEST_FILE, unsigned(gPassedTests), unsigned(gTotalTests));
return gPassedTests == gTotalTests ? 0 : -1;
}