зеркало из https://github.com/Azure/azure-utpm-c.git
Fix for: format '%lu' expects argument of type 'long unsigned int'
This commit is contained in:
Родитель
02e25e1628
Коммит
599ae0a0c8
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче