diff options
author | Ima Mechanique <ima.mechanique@secondlife.com> | 2014-01-11 03:19:34 +0000 |
---|---|---|
committer | Ima Mechanique <ima.mechanique@secondlife.com> | 2014-01-11 03:19:34 +0000 |
commit | 025e0b07ab716f2ab07f6a43bf19450fe08115c5 (patch) | |
tree | 262c32a57fae696cd225557c0cac503e57db7d1d /indra/llui | |
parent | dc2af90b04a16a41851874b9ab55b4ac61af2d7b (diff) |
Correcting int to U32
Diffstat (limited to 'indra/llui')
-rwxr-xr-x | indra/llui/llkeywords.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llkeywords.cpp b/indra/llui/llkeywords.cpp index b7de4d5224..050573e699 100755 --- a/indra/llui/llkeywords.cpp +++ b/indra/llui/llkeywords.cpp @@ -136,7 +136,7 @@ std::string LLKeywords::getArguments(LLSD& arguments) if (arguments.isArray()) { - int argsCount = arguments.size(); + U32 argsCount = arguments.size(); LLSD::array_iterator arrayIt = arguments.beginArray(); for ( ; arrayIt != arguments.endArray(); ++arrayIt) { |