diff options
author | davilla <davilla@4pi.com> | 2011-10-01 11:52:14 -0400 |
---|---|---|
committer | davilla <davilla@4pi.com> | 2011-10-01 11:52:14 -0400 |
commit | ae77974c73d7076319d2d06c0e3f02d1f0a32b26 (patch) | |
tree | 3a5b308ca8e9f8fae0908fb725d2101939630a98 | |
parent | 48a98a3f9cf62e2e374a4675a4fa1e9a8fd657f1 (diff) |
fixed compiler warnings, size_f is not a %d
-rw-r--r-- | xbmc/peripherals/devices/Peripheral.cpp | 3 |
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; } |