ENH: Fix warning
This commit is contained in:
parent
1e03fe75bb
commit
f19c1a8094
|
@ -2009,11 +2009,11 @@ void cmCTest::ProcessDirectory(cmCTest::tm_VectorOfStrings &passed,
|
||||||
cres.m_Name = testname;
|
cres.m_Name = testname;
|
||||||
if ( m_ShowOnly )
|
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
|
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);
|
fflush(stderr);
|
||||||
}
|
}
|
||||||
//std::cerr << "Testing " << args[0] << " ... ";
|
//std::cerr << "Testing " << args[0] << " ... ";
|
||||||
|
|
Loading…
Reference in New Issue