diff options
Diffstat (limited to 'indra/llprimitive')
-rw-r--r-- | indra/llprimitive/lldaeloader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llprimitive/lldaeloader.cpp b/indra/llprimitive/lldaeloader.cpp index 40b78ffa9d..ff71d52138 100644 --- a/indra/llprimitive/lldaeloader.cpp +++ b/indra/llprimitive/lldaeloader.cpp @@ -2133,7 +2133,7 @@ std::string LLDAELoader::getElementLabel(daeElement *element) std::string index_string; if (parent) { - U32 ind = 0; + size_t ind = 0; parent->getChildren().find(element, ind); index_string = "_" + boost::lexical_cast<std::string>(ind); |