aboutsummaryrefslogtreecommitdiff
path: root/src/xmlfilewriter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmlfilewriter.cpp')
-rw-r--r--src/xmlfilewriter.cpp2
1 files changed, 1 insertions, 1 deletions
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()
23 23
24void XmlFileWriter::writeString( const char *sString ) 24void XmlFileWriter::writeString( const char *sString )
25{ 25{
26 fprintf( fh, sString ); 26 fputs( sString, fh );
27} 27}
28 28