newline fix

This commit is contained in:
Glenn Maynard
2003-12-04 08:39:08 +00:00
parent e176d533b1
commit b651e4f002
+1 -1
View File
@@ -103,7 +103,7 @@ void IniFile::WriteFile()
f.PutLine( ssprintf("[%s]", k->first.c_str()) );
for (key::const_iterator i = k->second.begin(); i != k->second.end(); ++i)
f.PutLine( ssprintf("%s=%s\n", i->first.c_str(), i->second.c_str()) );
f.PutLine( ssprintf("%s=%s", i->first.c_str(), i->second.c_str()) );
f.PutLine( "" );
}