summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2004-03-19 14:34:29 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2004-03-19 14:34:29 (GMT)
commita7c779731d319e2b1ac912253ec9908fd9e0a81b (patch)
tree3692e02b44ccd8d586a074643230ba5692378cc8
parent5b78e5f563d4640525920a2a073ddf5b3df39d0f (diff)
downloadCMake-a7c779731d319e2b1ac912253ec9908fd9e0a81b.zip
CMake-a7c779731d319e2b1ac912253ec9908fd9e0a81b.tar.gz
CMake-a7c779731d319e2b1ac912253ec9908fd9e0a81b.tar.bz2
ERR: Fix warnings about wrong format
-rw-r--r--Source/cmCTest.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index f071334..d44b39a 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -2009,11 +2009,11 @@ void cmCTest::ProcessDirectory(cmCTest::tm_VectorOfStrings &passed,
cres.m_Name = testname;
if ( m_ShowOnly )
{
- fprintf(stderr,"%3d/%3d Testing %-30s\n", cnt, tmsize, testname.c_str());
+ fprintf(stderr,"%3d/%3ud Testing %-30s\n", cnt, tmsize, testname.c_str());
}
else
{
- fprintf(stderr,"%3d/%3d Testing %-30s ", cnt, tmsize, testname.c_str());
+ fprintf(stderr,"%3d/%3ud Testing %-30s ", cnt, tmsize, testname.c_str());
fflush(stderr);
}
//std::cerr << "Testing " << args[0] << " ... ";