From be1e7258d0a920b58ea98a43fd5b8130542cf638 Mon Sep 17 00:00:00 2001 From: yudechen Date: Thu, 23 Jun 2022 09:14:45 +0800 Subject: [PATCH] fix mix using unsigned and signed numbers. Signed-off-by: yudechen Change-Id: I669a9e8198d8d7a27590a00515bd2385a802fdce --- src/create_pcid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/create_pcid.c b/src/create_pcid.c index 0513949..c0692b6 100644 --- a/src/create_pcid.c +++ b/src/create_pcid.c @@ -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; } -- Gitee