Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/59093 )
Change subject: amdfwtool: Set flag comboable as bool type ......................................................................
amdfwtool: Set flag comboable as bool type
Fix the CL: https://review.coreboot.org/c/coreboot/+/58942 The type comboable was int but set as true.
Change-Id: Id2c43378735c089a27a5aa683b55a0f7ec3677de Signed-off-by: Zheng Bao fishbaozi@gmail.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/59093 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Felix Held felix-coreboot@felixheld.de --- M util/amdfwtool/amdfwtool.c 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Felix Held: Looks good to me, approved
diff --git a/util/amdfwtool/amdfwtool.c b/util/amdfwtool/amdfwtool.c index 38f0e62..2c0b3e2 100644 --- a/util/amdfwtool/amdfwtool.c +++ b/util/amdfwtool/amdfwtool.c @@ -1274,7 +1274,7 @@ char *rom = NULL; embedded_firmware *amd_romsig; psp_directory_table *pspdir; - int comboable = 0; + bool comboable = false; int fuse_defined = 0; int targetfd; char *output = NULL, *config = NULL;