From df6f199b4e158d1d6cfb99d45258efa22afee715 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 11 Oct 2006 15:24:42 +0000 Subject: Fixed a wierd bug that caused each element of any part of a copied node tree to be partially cross-linked to the node that was the root of the copy. Also fixed a bug in the xmlfilewriter that should make it both faster, and not mess up % style replacements. --- src/xmlfilewriter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/xmlfilewriter.cpp') diff --git a/src/xmlfilewriter.cpp b/src/xmlfilewriter.cpp index 19120a0..3c6fb41 100644 --- a/src/xmlfilewriter.cpp +++ b/src/xmlfilewriter.cpp @@ -23,6 +23,6 @@ XmlFileWriter::~XmlFileWriter() void XmlFileWriter::writeString( const char *sString ) { - fprintf( fh, sString ); + fputs( sString, fh ); } -- cgit v1.2.3