aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvdrfan <vdrfan@xbmc.org>2013-09-09 11:55:30 +0200
committervdrfan <vdrfan@xbmc.org>2013-09-09 11:55:30 +0200
commit4e32a8446e13ecf13731eecbf45fb461147903e1 (patch)
treebf0598d11f49f7aea72995d30108dcd0d48644bf
parent95bfa124617f661444fa5a1fe898ca82e07c8b62 (diff)
fixed: gcc format warnings in PythonInvoker.cpp
-rw-r--r--xbmc/interfaces/python/PythonInvoker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/interfaces/python/PythonInvoker.cpp b/xbmc/interfaces/python/PythonInvoker.cpp
index faaf08bd24..a77ba2e7cd 100644
--- a/xbmc/interfaces/python/PythonInvoker.cpp
+++ b/xbmc/interfaces/python/PythonInvoker.cpp
@@ -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);
}
}