Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/simpleini.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrodie Thiesfield <brofield@gmail.com>2009-06-04 08:37:10 +0400
committerBrodie Thiesfield <brofield@gmail.com>2009-06-04 08:37:10 +0400
commitdac08620aeb28c49149f0ec063136b5bc0e8dba4 (patch)
tree6658176106b96701039a0263d0f846dde8a8b752 /SimpleIni.h
parent4127e13b00f6b7ec85bc2fcfc1785d7981a0d498 (diff)
add spaces around the = sign when writing out the file
Diffstat (limited to 'SimpleIni.h')
-rw-r--r--SimpleIni.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/SimpleIni.h b/SimpleIni.h
index 4f84a87..eedb485 100644
--- a/SimpleIni.h
+++ b/SimpleIni.h
@@ -2252,7 +2252,7 @@ CSimpleIniTempl<SI_CHAR,SI_STRLESS,SI_CONVERTER>::Save(
if (!convert.ConvertToStore(iValue->pItem)) {
return SI_FAIL;
}
- a_oOutput.Write("=");
+ a_oOutput.Write(" = ");
if (m_bAllowMultiLine && IsMultiLineData(iValue->pItem)) {
// multi-line data needs to be processed specially to ensure
// that we use the correct newline format for the current system