summaryrefslogtreecommitdiffstats
path: root/Source/ctest.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2001-08-23 15:39:21 (GMT)
committerKen Martin <ken.martin@kitware.com>2001-08-23 15:39:21 (GMT)
commit32e789efd24af8064fbb19a8d2c85a4b44e02a0c (patch)
treeb928f59e987ab8bad151c2f27347c8cd3f37e255 /Source/ctest.cxx
parentab0ef5b6a09fd03e340ed81f48a47f5615de7be0 (diff)
downloadCMake-32e789efd24af8064fbb19a8d2c85a4b44e02a0c.zip
CMake-32e789efd24af8064fbb19a8d2c85a4b44e02a0c.tar.gz
CMake-32e789efd24af8064fbb19a8d2c85a4b44e02a0c.tar.bz2
fixed format
Diffstat (limited to 'Source/ctest.cxx')
-rw-r--r--Source/ctest.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx
index cbda92c..f8bceaa 100644
--- a/Source/ctest.cxx
+++ b/Source/ctest.cxx
@@ -182,7 +182,7 @@ int main (int argc, char *argv[])
else
{
float percent = passed * 100.0 / total;
- fprintf(stderr,"%f.0%% tests passed, %i tests failed out of %i\n",
+ fprintf(stderr,"%.0f%% tests passed, %i tests failed out of %i\n",
percent,failed, total);
}