diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-03-21 01:37:07 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-03-21 01:37:07 (GMT) |
commit | f19c1a80945bc93aac513fcb590333c87b7a5674 (patch) | |
tree | b872c5c726f9c3d5c8c52dc292f427f7fb96f76e | |
parent | 1e03fe75bb7adb04b7404151b293f19a648419e0 (diff) | |
download | CMake-f19c1a80945bc93aac513fcb590333c87b7a5674.zip CMake-f19c1a80945bc93aac513fcb590333c87b7a5674.tar.gz CMake-f19c1a80945bc93aac513fcb590333c87b7a5674.tar.bz2 |
ENH: Fix warning
-rw-r--r-- | Source/cmCTest.cxx | 4 |
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] << " ... "; |