Fix for: format '%lu' expects argument of type 'long unsigned int'

This commit is contained in:
Ewerton Scaboro da Silva 2019-05-17 22:09:16 +00:00
Родитель 02e25e1628
Коммит 599ae0a0c8
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -217,7 +217,7 @@ static void* load_abrmd(void** dylib)
goto err;
}
if (size < sizeof(TCTI_CTX)) {
LogError("TCTI context size reported by tcti_init() in %s is too small: %lu < %lu", abrmd_name, (unsigned int)size, (unsigned int)sizeof(TCTI_CTX));
LogError("TCTI context size reported by tcti_init() in %s is too small: %lu < %lu", abrmd_name, (long unsigned int)size, (long unsigned int)sizeof(TCTI_CTX));
goto err;
}