ERR: Fix warnings about wrong format

This commit is contained in:
Andy Cedilnik 2004-03-19 09:34:29 -05:00
parent 5b78e5f563
commit a7c779731d
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/%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] << " ... ";