From ae77974c73d7076319d2d06c0e3f02d1f0a32b26 Mon Sep 17 00:00:00 2001 From: davilla Date: Sat, 1 Oct 2011 11:52:14 -0400 Subject: fixed compiler warnings, size_f is not a %d --- xbmc/peripherals/devices/Peripheral.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xbmc/peripherals/devices/Peripheral.cpp b/xbmc/peripherals/devices/Peripheral.cpp index 42c4102f7e..27ab0a4761 100644 --- a/xbmc/peripherals/devices/Peripheral.cpp +++ b/xbmc/peripherals/devices/Peripheral.cpp @@ -149,7 +149,8 @@ bool CPeripheral::Initialise(void) if (bReturn) { - CLog::Log(LOGDEBUG, "%s - initialised peripheral on '%s' with %d features and %d sub devices", __FUNCTION__, m_strLocation.c_str(), m_features.size(), m_subDevices.size()); + CLog::Log(LOGDEBUG, "%s - initialised peripheral on '%s' with %d features and %d sub devices", + __FUNCTION__, m_strLocation.c_str(), (int)m_features.size(), (int)m_subDevices.size()); m_bInitialised = true; } -- cgit v1.2.3