libconfigfile/configfile.cpp: fix typo while merging

Origin commit data
------------------
Commit: 9dcf32cdd2
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-03-07 (Thu, 07 Mar 2013)
This commit is contained in:
[CST] Focus
2013-03-07 17:20:53 +04:00
parent a3aba8fba3
commit 1febf10efb

View File

@@ -97,7 +97,7 @@ bool CConfigFile::saveConfig(const char * const filename)
unlink(tmpname.c_str());
std::fstream configFile(tmpname.c_str(), std::ios::out);
if (configFile != NULL())
if (configFile != NULL)
{
std::cout << "[ConfigFile] saving " << filename << std::endl;
for (ConfigDataMap::const_iterator it = configData.begin(); it != configData.end(); ++it)