fix debug output printf type warnings

This commit is contained in:
Stefan Seyfried
2015-12-28 16:23:26 +01:00
parent be8db2598f
commit 3e37715c86
4 changed files with 5 additions and 5 deletions

View File

@@ -253,7 +253,7 @@ int CComponentsForm::genIndex()
CComponentsItem* CComponentsForm::getCCItem(const uint& cc_item_id)
{
if (cc_item_id >= size()){
dprintf(DEBUG_NORMAL, "[CComponentsForm] [%s - %d] Error: parameter cc_item_id = %u, out of range (size = %" PRIx32")...\n", __func__, __LINE__, cc_item_id, size());
dprintf(DEBUG_NORMAL, "[CComponentsForm] [%s - %d] Error: parameter cc_item_id = %u, out of range (size = %lx)...\n", __func__, __LINE__, cc_item_id, size());
return NULL;
}