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.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/u64.cpp b/indra/llcommon/u64.cpp
index 7f0323aaad..b942322773 100644
--- a/indra/llcommon/u64.cpp
+++ b/indra/llcommon/u64.cpp
@@ -14,7 +14,7 @@
U64 str_to_U64(const char *str)
{
U64 result = 0;
- char *aptr = strpbrk(str,"0123456789");
+ const char *aptr = strpbrk(str,"0123456789");
if (!aptr)
{