mirror of
https://github.com/openharmony/developtools_syscap_codec.git
synced 2026-08-28 04:40:02 -04:00
!73 修复混用无符号数和有符号数。
Merge pull request !73 from chenyude/monthly_20220614
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