diff options
author | Jacek Antonelli | 2008-08-15 23:45:50 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:50 -0500 |
commit | 2a4dea528f670b9bb1f77ef27a8a1dd16603d114 (patch) | |
tree | 95c68e362703c9099d571ecbdc6142b1cda1e005 /linden/indra/llxml/llxmlparser.cpp | |
parent | Second Life viewer sources 1.20.6 (diff) | |
download | meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.zip meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.gz meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.bz2 meta-impy-2a4dea528f670b9bb1f77ef27a8a1dd16603d114.tar.xz |
Second Life viewer sources 1.20.7
Diffstat (limited to '')
-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; |