Fixed compiler warnings #5210

This commit is contained in:
Armin Novak 2019-01-29 16:15:23 +01:00
parent 9d680904cc
commit 51039f6535
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ DEVICE* devman_get_device_by_type(DEVMAN* devman, UINT32 type)
for (x = 0; x < count; x++)
{
DEVICE* cur = (DEVICE*) ListDictionary_GetItemValue(devman->devices, keys[x]);
DEVICE* cur = (DEVICE*) ListDictionary_GetItemValue(devman->devices, (void*)keys[x]);
if (!cur)
continue;