fixed: gcc format warnings in PythonInvoker.cpp
authorvdrfan <vdrfan@xbmc.org>
Mon, 9 Sep 2013 09:55:30 +0000 (11:55 +0200)
committervdrfan <vdrfan@xbmc.org>
Mon, 9 Sep 2013 09:55:30 +0000 (11:55 +0200)
xbmc/interfaces/python/PythonInvoker.cpp

index faaf08b..a77ba2e 100644 (file)
@@ -575,7 +575,7 @@ void CPythonInvoker::initializeModules(const std::map<std::string, PythonModuleI
   for (std::map<std::string, PythonModuleInitialization>::const_iterator module = modules.begin(); module != modules.end(); ++module)
   {
     if (!initializeModule(module->second))
-      CLog::Log(LOGWARNING, "CPythonInvoker(%d, %s): unable to initialize python module \"%s\"", module->first.c_str(), GetId(), m_source);
+      CLog::Log(LOGWARNING, "CPythonInvoker(%s, %i): unable to initialize python module \"%s\"", module->first.c_str(), GetId(), m_source);
   }
 }