mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Changed: Use %u instead of %d for uint
--HG-- branch : develop
This commit is contained in:
parent
32fbf8163d
commit
1ed5dcdda9
1 changed files with 2 additions and 2 deletions
|
@ -234,10 +234,10 @@ void readStringArray(const std::string &filename, NLGEORGES::UFormLoader *formLo
|
||||||
if(elmt->getArrayValue(stringName, i))
|
if(elmt->getArrayValue(stringName, i))
|
||||||
container.insert(make_pair(nodeName, stringName));
|
container.insert(make_pair(nodeName, stringName));
|
||||||
else
|
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
|
else
|
||||||
nlwarning("readStringArray: node '%d', index valid.", i);
|
nlwarning("readStringArray: node '%u', index valid.", i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue