summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/ctest.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx
index 38bd10d..09f9b31 100644
--- a/Source/ctest.cxx
+++ b/Source/ctest.cxx
@@ -320,7 +320,7 @@ int main (int argc, char *argv[])
float percent = float(passed.size()) * 100.0f / total;
fprintf(stderr,"\n%.0f%% tests passed, %i tests failed out of %i\n",
- percent, failed.size(), total);
+ percent, int(failed.size()), total);
if (failed.size())
{