diff options
Diffstat (limited to 'src/configuration.cpp')
-rw-r--r-- | src/configuration.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configuration.cpp b/src/configuration.cpp index a9c4037e9..2ba53cca4 100644 --- a/src/configuration.cpp +++ b/src/configuration.cpp @@ -757,8 +757,8 @@ void ConfigurationObject::writeToXML(const XmlTextWriterPtr writer) } #endif XmlTextWriterStartElement(writer, "option"); - XmlTextWriterWriteAttribute(writer,"name", i->first.c_str()); - XmlTextWriterWriteAttribute(writer,"value", i->second.c_str()); + XmlTextWriterWriteAttribute(writer, "name", i->first.c_str()); + XmlTextWriterWriteAttribute(writer, "value", i->second.c_str()); xmlTextWriterEndElement(writer); } |