From d0045b18ce34b350139a43c95c9e432f4c6e43a5 Mon Sep 17 00:00:00 2001 From: Paul Rosenfeld Date: Mon, 24 Sep 2012 12:24:13 -0400 Subject: [PATCH] Fixed Issue #18 -- thanks rioshering --- IniReader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IniReader.cpp b/IniReader.cpp index 3fb2dd5..5779937 100644 --- a/IniReader.cpp +++ b/IniReader.cpp @@ -408,7 +408,7 @@ void IniReader::ReadIniFile(string filename, bool isSystemFile) // all characters after the equals are the value valueString = line.substr(equalsIndex+1,strlen-equalsIndex); - IniReader::SetKey(key, valueString, lineNumber, isSystemFile); + IniReader::SetKey(key, valueString, isSystemFile, lineNumber); // got to the end of the config map without finding the key } }