aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavilla <davilla@4pi.com>2011-10-01 11:52:14 -0400
committerdavilla <davilla@4pi.com>2011-10-01 11:52:14 -0400
commitae77974c73d7076319d2d06c0e3f02d1f0a32b26 (patch)
tree3a5b308ca8e9f8fae0908fb725d2101939630a98
parent48a98a3f9cf62e2e374a4675a4fa1e9a8fd657f1 (diff)
fixed compiler warnings, size_f is not a %d
-rw-r--r--xbmc/peripherals/devices/Peripheral.cpp3
1 files changed, 2 insertions, 1 deletions
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;
}