fix mix using unsigned and signed numbers.

Signed-off-by: yudechen <chenyude@huawei.com>
Change-Id: I669a9e8198d8d7a27590a00515bd2385a802fdce
This commit is contained in:
yudechen
2022-06-23 09:14:45 +08:00
parent 996505686c
commit 60683563a7
+1 -1
View File
@@ -365,7 +365,7 @@ int32_t DecodePCID(char *inputFile, char *outDirPath)
(pcidMain->systemType == 0b010 ? "small" :
(pcidMain->systemType == 0b100 ? "standard" : NULL));
if (systemType == NULL) {
PRINT_ERR("prase file failed, systemType is invaild, %d\n", pcidMain->systemType);
PRINT_ERR("prase file failed, systemType is invaild, %u\n", pcidMain->systemType);
ret = -1;
goto FREE_CONTEXT_OUT;
}