diff options
Diffstat (limited to 'linden/indra/llxml/llxmlparser.cpp')
-rw-r--r-- | linden/indra/llxml/llxmlparser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/llxml/llxmlparser.cpp b/linden/indra/llxml/llxmlparser.cpp index 0cbb82b..3b4d944 100644 --- a/linden/indra/llxml/llxmlparser.cpp +++ b/linden/indra/llxml/llxmlparser.cpp | |||
@@ -77,7 +77,7 @@ BOOL LLXmlParser::parseFile(const std::string &path) | |||
77 | 77 | ||
78 | BOOL success = TRUE; | 78 | BOOL success = TRUE; |
79 | 79 | ||
80 | FILE* file = LLFile::fopen(path.c_str(), "rb"); /* Flawfinder: ignore */ | 80 | LLFILE* file = LLFile::fopen(path.c_str(), "rb"); /* Flawfinder: ignore */ |
81 | if( !file ) | 81 | if( !file ) |
82 | { | 82 | { |
83 | snprintf( mAuxErrorString, sizeof(mAuxErrorString), "Couldn't open file %s", path.c_str()); /* Flawfinder: ignore */ | 83 | snprintf( mAuxErrorString, sizeof(mAuxErrorString), "Couldn't open file %s", path.c_str()); /* Flawfinder: ignore */ |
@@ -393,7 +393,7 @@ int main() | |||
393 | { | 393 | { |
394 | char buf[1024]; | 394 | char buf[1024]; |
395 | 395 | ||
396 | FILE* file = LLFile::fopen("test.xml", "rb"); | 396 | LLFILE* file = LLFile::fopen("test.xml", "rb"); |
397 | if( !file ) | 397 | if( !file ) |
398 | { | 398 | { |
399 | return 1; | 399 | return 1; |