1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00

Fix wrong parameter to format.

This commit is contained in:
Sandu Liviu Catalin 2016-05-26 06:57:42 +03:00
parent aa85acb3c2
commit d8d240285d

View File

@ -228,7 +228,7 @@ bool Core::Initialize()
// Are there any options to read? // Are there any options to read?
if (conf.GetAllKeys("Options", options) || options.size() > 0) if (conf.GetAllKeys("Options", options) || options.size() > 0)
{ {
LogDbg("Found (%u) options in the configuration file", options); LogDbg("Found (%u) options in the configuration file", options.size());
// Process all the specified keys under the [Options] section // Process all the specified keys under the [Options] section
for (const auto & option : options) for (const auto & option : options)
{ {