aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llxml/llxmlnode.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/llxml/llxmlnode.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/llxml/llxmlnode.cpp b/linden/indra/llxml/llxmlnode.cpp
index 757e2f7..f9852d3 100644
--- a/linden/indra/llxml/llxmlnode.cpp
+++ b/linden/indra/llxml/llxmlnode.cpp
@@ -572,7 +572,7 @@ bool LLXMLNode::parseFile(
572 LLXMLNode* defaults_tree) 572 LLXMLNode* defaults_tree)
573{ 573{
574 // Read file 574 // Read file
575 FILE* fp = LLFile::fopen(filename.c_str(), "rb"); /* Flawfinder: ignore */ 575 LLFILE* fp = LLFile::fopen(filename.c_str(), "rb"); /* Flawfinder: ignore */
576 if (fp == NULL) 576 if (fp == NULL)
577 { 577 {
578 node = new LLXMLNode(); 578 node = new LLXMLNode();
@@ -741,12 +741,12 @@ BOOL LLXMLNode::isFullyDefault()
741} 741}
742 742
743// static 743// static
744void LLXMLNode::writeHeaderToFile(FILE *fOut) 744void LLXMLNode::writeHeaderToFile(LLFILE *fOut)
745{ 745{
746 fprintf(fOut, "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\" ?>\n"); 746 fprintf(fOut, "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\" ?>\n");
747} 747}
748 748
749void LLXMLNode::writeToFile(FILE *fOut, LLString indent) 749void LLXMLNode::writeToFile(LLFILE *fOut, LLString indent)
750{ 750{
751 if (isFullyDefault()) 751 if (isFullyDefault())
752 { 752 {