libconfigfile/configfile.cpp: fix typo while merging

Origin commit data
------------------
Branch: ni/coolstream
Commit: 9dcf32cdd2
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-03-07 (Thu, 07 Mar 2013)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
[CST] Focus
2013-03-07 17:20:53 +04:00
parent 6042fb95d8
commit e6400bfa72

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)