Changed: Use %u instead of %d for uint

This commit is contained in:
kervala 2016-12-18 14:00:20 +01:00
parent c4cd6ccfc2
commit 22e236f2fe

View file

@ -234,10 +234,10 @@ void readStringArray(const std::string &filename, NLGEORGES::UFormLoader *formLo
if(elmt->getArrayValue(stringName, i))
container.insert(make_pair(nodeName, stringName));
else
nlwarning("readStringArray: no string associated to the node '%d(%s)'.", i, nodeName.c_str());
nlwarning("readStringArray: no string associated to the node '%u(%s)'.", i, nodeName.c_str());
}
else
nlwarning("readStringArray: node '%d', index valid.", i);
nlwarning("readStringArray: node '%u', index valid.", i);
}
}
}