summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorAaron Brashears <aaronb@lindenlab.com>2008-07-03 22:23:55 +0000
committerAaron Brashears <aaronb@lindenlab.com>2008-07-03 22:23:55 +0000
commit596f6b57e2afbbe3728475fb7c101a5ee52115fa (patch)
treeb4d629575732d6130e806946e79d9e90e81895e0 /indra/newview
parent757e8e84f803ed0bf622bcdba1bd8dd74640999d (diff)
simple crash fix if someone creates a bad command line. fallout from string cleanup. very small. revert if there are problems.
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llappviewer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp
index 30634a3f2c..8661b07ce2 100644
--- a/indra/newview/llappviewer.cpp
+++ b/indra/newview/llappviewer.cpp
@@ -1653,8 +1653,8 @@ bool LLAppViewer::initConfiguration()
<< "Error: " << clp.getErrorMessage();
OSMessageBox(
- msg.str().c_str(),
- NULL,
+ msg.str(),
+ LLStringUtil::null,
OSMB_OK);
return false;