diff options
Diffstat (limited to '')
-rw-r--r-- | src/xmlfilewriter.cpp | 2 |
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 | ||
24 | void XmlFileWriter::writeString( const char *sString ) | 24 | void XmlFileWriter::writeString( const char *sString ) |
25 | { | 25 | { |
26 | fprintf( fh, sString ); | 26 | fputs( sString, fh ); |
27 | } | 27 | } |
28 | 28 | ||