summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2004-03-21 01:37:07 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2004-03-21 01:37:07 (GMT)
commitf19c1a80945bc93aac513fcb590333c87b7a5674 (patch)
treeb872c5c726f9c3d5c8c52dc292f427f7fb96f76e
parent1e03fe75bb7adb04b7404151b293f19a648419e0 (diff)
downloadCMake-f19c1a80945bc93aac513fcb590333c87b7a5674.zip
CMake-f19c1a80945bc93aac513fcb590333c87b7a5674.tar.gz
CMake-f19c1a80945bc93aac513fcb590333c87b7a5674.tar.bz2
ENH: Fix warning
-rw-r--r--Source/cmCTest.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index d44b39a..e9dc574 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/%3ud Testing %-30s\n", cnt, tmsize, testname.c_str());
+ fprintf(stderr,"%3d/%3d Testing %-30s\n", cnt, (int)tmsize, testname.c_str());
}
else
{
- fprintf(stderr,"%3d/%3ud Testing %-30s ", cnt, tmsize, testname.c_str());
+ fprintf(stderr,"%3d/%3d Testing %-30s ", cnt, (int)tmsize, testname.c_str());
fflush(stderr);
}
//std::cerr << "Testing " << args[0] << " ... ";