summaryrefslogtreecommitdiff
path: root/indra/llcommon/u64.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llcommon/u64.cpp')
-rw-r--r--indra/llcommon/u64.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/u64.cpp b/indra/llcommon/u64.cpp
index f2efef1c01..f3422770ae 100644
--- a/indra/llcommon/u64.cpp
+++ b/indra/llcommon/u64.cpp
@@ -107,8 +107,8 @@ F64 U64_to_F64(const U64 value)
U64 llstrtou64(const char* str, char** end, S32 base)
{
#ifdef LL_WINDOWS
- return _strtoui64(str,end,base);
+ return _strtoui64(str,end,base);
#else
- return strtoull(str,end,base);
+ return strtoull(str,end,base);
#endif
}