diff options
author | Oz Linden <oz@lindenlab.com> | 2013-04-02 15:01:25 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2013-04-02 15:01:25 -0400 |
commit | e20099155378fd10f7997e36ae8ef150c8c5ad91 (patch) | |
tree | fa92a3a27384d86eb36d9843a729acf8e60f3633 /indra/newview/llappviewerlinux.cpp | |
parent | ce0dbbd8a543a32e033eb15888259151ca113539 (diff) |
change initLogging virtual functions to void (returns were ignored anyway)
Diffstat (limited to 'indra/newview/llappviewerlinux.cpp')
-rw-r--r-- | indra/newview/llappviewerlinux.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llappviewerlinux.cpp b/indra/newview/llappviewerlinux.cpp index 8695652168..5f98fd0a34 100644 --- a/indra/newview/llappviewerlinux.cpp +++ b/indra/newview/llappviewerlinux.cpp @@ -440,7 +440,7 @@ bool LLAppViewerLinux::beingDebugged() #endif } -bool LLAppViewerLinux::initLogging() +void LLAppViewerLinux::initLogging() { // Remove the last stack trace, if any // This file is no longer created, since the move to Google Breakpad @@ -449,7 +449,7 @@ bool LLAppViewerLinux::initLogging() gDirUtilp->getExpandedFilename(LL_PATH_LOGS,"stack_trace.log"); LLFile::remove(old_stack_file); - return LLAppViewer::initLogging(); + LLAppViewer::initLogging(); } bool LLAppViewerLinux::initParseCommandLine(LLCommandLineParser& clp) |