Skip to content
Snippets Groups Projects
Commit 3d7a869b authored by Brad King's avatar Brad King
Browse files

ERR: Fix for fprintf format warning.

parent 50be646b
No related branches found
No related tags found
No related merge requests found
......@@ -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())
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment