diff options
author | Sascha Woo <sascha.woo@gmail.com> | 2014-09-24 16:23:23 +0200 |
---|---|---|
committer | Sascha Woo <sascha.woo@gmail.com> | 2014-09-24 16:23:23 +0200 |
commit | 82ea9fd853f964e2fc053f3e7cd10663d4afc9f5 (patch) | |
tree | 1873f3b4dc3c4f91119cfbdd9c68a2923316d034 | |
parent | 331f8c9c43d4d89f34233983c545e930b1dc3130 (diff) | |
parent | edc63dc46a781935193bc914fdb834668b51b52b (diff) |
Merge pull request #5405 from xhaggi/pvr-fix-printf-format-mismatch
[pvr] fix wrong printf format mismatch
-rw-r--r-- | xbmc/pvr/channels/PVRChannelGroups.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xbmc/pvr/channels/PVRChannelGroups.cpp b/xbmc/pvr/channels/PVRChannelGroups.cpp index 15cd414c7a..c5a022ae8f 100644 --- a/xbmc/pvr/channels/PVRChannelGroups.cpp +++ b/xbmc/pvr/channels/PVRChannelGroups.cpp @@ -225,7 +225,7 @@ bool CPVRChannelGroups::LoadUserDefinedChannelGroups(void) if (bSyncWithBackends) { GetGroupsFromClients(); - CLog::Log(LOGDEBUG, "PVR - %s - %d new user defined %s channel groups fetched from clients", __FUNCTION__, (int) (m_groups.size() - iSize), m_bRadio ? "radio" : "TV"); + CLog::Log(LOGDEBUG, "PVR - %s - %"PRIuS" new user defined %s channel groups fetched from clients", __FUNCTION__, (m_groups.size() - iSize), m_bRadio ? "radio" : "TV"); } else CLog::Log(LOGDEBUG, "PVR - %s - 'synchannelgroups' is disabled; skipping groups from clients", __FUNCTION__); @@ -279,7 +279,7 @@ bool CPVRChannelGroups::Load(void) // load groups from the database database->Get(*this); - CLog::Log(LOGDEBUG, "PVR - %s - %d %s groups fetched from the database", __FUNCTION__, m_groups.size(), m_bRadio ? "radio" : "TV"); + CLog::Log(LOGDEBUG, "PVR - %s - %"PRIuS" %s groups fetched from the database", __FUNCTION__, m_groups.size(), m_bRadio ? "radio" : "TV"); // load channels of internal group if (!internalGroup->Load()) @@ -299,7 +299,7 @@ bool CPVRChannelGroups::Load(void) CPVRChannelGroupPtr lastPlayedGroup = GetLastPlayedGroup(); SetSelectedGroup(lastPlayedGroup ? lastPlayedGroup : internalGroup); - CLog::Log(LOGDEBUG, "PVR - %s - %d %s channel groups loaded", __FUNCTION__, (int) m_groups.size(), m_bRadio ? "radio" : "TV"); + CLog::Log(LOGDEBUG, "PVR - %s - %"PRIuS" %s channel groups loaded", __FUNCTION__, m_groups.size(), m_bRadio ? "radio" : "TV"); // need at least 1 group return m_groups.size() > 0; |