mirror of
https://github.com/openharmony/developtools_syscap_codec.git
synced 2026-08-27 10:21:25 -04:00
fix mix using unsigned and signed numbers.
Signed-off-by: yudechen <chenyude@huawei.com> Change-Id: I669a9e8198d8d7a27590a00515bd2385a802fdce
This commit is contained in:
+1
-1
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user