ENH: Fix warning

This commit is contained in:
Andy Cedilnik 2004-03-20 20:37:07 -05:00
parent 1e03fe75bb
commit f19c1a8094
1 changed files with 2 additions and 2 deletions

View File

@ -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] << " ... ";