diff options
author | Aura Linden <aura@lindenlab.com> | 2014-01-16 10:37:10 -0800 |
---|---|---|
committer | Aura Linden <aura@lindenlab.com> | 2014-01-16 10:37:10 -0800 |
commit | d9b09804910ae47ab4cecdd2cdd6fa2490fa748e (patch) | |
tree | 838d5f1999e68e01242f5b7fcd42111b1e69c0b1 | |
parent | 00aa2fee6d3841788d7146e5d6d66d0bceff9c3f (diff) |
Fixed syntax issue that was wrapped in #if that didn't get hit until we got to teamcity. oops.
-rwxr-xr-x | indra/llcommon/llapp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llapp.cpp b/indra/llcommon/llapp.cpp index e75e741db8..3312f6e3b0 100755 --- a/indra/llcommon/llapp.cpp +++ b/indra/llcommon/llapp.cpp @@ -353,7 +353,7 @@ void LLApp::setupErrorHandling() 0, google_breakpad::ExceptionHandler::HANDLER_ALL, MiniDumpNormal, //Generate a 'normal' minidump. - strinize(wpipe_name).c_str(), + stringize(wpipe_name).c_str(), NULL); //No custom client info. if (mExceptionHandler) { |