diff options
Diffstat (limited to 'linden/indra/newview/lllogchat.cpp')
-rw-r--r-- | linden/indra/newview/lllogchat.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/lllogchat.cpp b/linden/indra/newview/lllogchat.cpp index 7be9781..38c4869 100644 --- a/linden/indra/newview/lllogchat.cpp +++ b/linden/indra/newview/lllogchat.cpp | |||
@@ -76,7 +76,7 @@ void LLLogChat::saveHistory(LLString filename, LLString line) | |||
76 | return; | 76 | return; |
77 | } | 77 | } |
78 | 78 | ||
79 | FILE* fp = LLFile::fopen(LLLogChat::makeLogFileName(filename).c_str(), "a"); /*Flawfinder: ignore*/ | 79 | LLFILE* fp = LLFile::fopen(LLLogChat::makeLogFileName(filename).c_str(), "a"); /*Flawfinder: ignore*/ |
80 | if (!fp) | 80 | if (!fp) |
81 | { | 81 | { |
82 | llinfos << "Couldn't open chat history log!" << llendl; | 82 | llinfos << "Couldn't open chat history log!" << llendl; |
@@ -96,7 +96,7 @@ void LLLogChat::loadHistory(LLString filename , void (*callback)(ELogLineType,LL | |||
96 | llerrs << "Filename is Empty!" << llendl; | 96 | llerrs << "Filename is Empty!" << llendl; |
97 | } | 97 | } |
98 | 98 | ||
99 | FILE* fptr = LLFile::fopen(makeLogFileName(filename).c_str(), "r"); /*Flawfinder: ignore*/ | 99 | LLFILE* fptr = LLFile::fopen(makeLogFileName(filename).c_str(), "r"); /*Flawfinder: ignore*/ |
100 | if (!fptr) | 100 | if (!fptr) |
101 | { | 101 | { |
102 | //LLUIString message = LLFloaterChat::getInstance()->getUIString("IM_logging_string"); | 102 | //LLUIString message = LLFloaterChat::getInstance()->getUIString("IM_logging_string"); |