Skip to content
Snippets Groups Projects
Commit 692ccae8 authored by Jaswant Panchumarti (Kitware)'s avatar Jaswant Panchumarti (Kitware)
Browse files

Fix -Wformat warning in vtkDebugLeaks

parent 49fd1072
No related branches found
No related tags found
No related merge requests found
......@@ -99,7 +99,7 @@ void vtkDebugLeaksHashTable::PrintTable(std::string& os)
if (iter->second > 0 && !vtkDebugLeaksIgnoreClassesCheck(iter->first))
{
char tmp[256];
snprintf(tmp, 256, "\" has %i %s still around.\n", iter->second,
snprintf(tmp, 256, "\" has %u %s still around.\n", iter->second,
(iter->second == 1) ? "instance" : "instances");
os += "Class \"";
os += iter->first;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment