!73 修复混用无符号数和有符号数。

Merge pull request !73 from chenyude/monthly_20220614
This commit is contained in:
openharmony_ci
2022-06-23 06:34:13 +00:00
committed by Gitee
+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;
}