summaryrefslogtreecommitdiff
path: root/indra/linux_updater
diff options
context:
space:
mode:
authorMartin Reddy <lynx@lindenlab.com>2009-09-04 17:05:31 +0000
committerMartin Reddy <lynx@lindenlab.com>2009-09-04 17:05:31 +0000
commitf929ec2d64155fd2921fb8e0cd13a59b5552b1bc (patch)
tree306a2317a04616d64b4125b3d6f37ff3f992fe00 /indra/linux_updater
parent92cccb9790900d60f6dcd6f47b49270212adcc92 (diff)
Fixed the Linux build of viewer-2.0.0-3.
- Updated linux_updater for new LLStringUtil::getTokens() signature - Ignore compiler warning for string constants not being referred to as const in fmod_error.h Fix for DEV-39457. Reviewed by moss.
Diffstat (limited to 'indra/linux_updater')
-rw-r--r--indra/linux_updater/linux_updater.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/linux_updater/linux_updater.cpp b/indra/linux_updater/linux_updater.cpp
index b93890ab32..4b0bf6a2d9 100644
--- a/indra/linux_updater/linux_updater.cpp
+++ b/indra/linux_updater/linux_updater.cpp
@@ -90,7 +90,7 @@ bool translate_init(std::string comma_delim_path_list,
// extract paths string vector from comma-delimited flat string
std::vector<std::string> paths;
- LLStringUtil::getTokens(comma_delim_path_list, paths); // split over ','
+ LLStringUtil::getTokens(comma_delim_path_list, paths, ","); // split over ','
// suck the translation xml files into memory
LLXMLNodePtr root;