Attention is currently required from: Zheng Bao. Hello Zheng Bao,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/59093
to review the following change.
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 --- M util/amdfwtool/amdfwtool.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/93/59093/1
diff --git a/util/amdfwtool/amdfwtool.c b/util/amdfwtool/amdfwtool.c index 3ac0fd3..f81357d 100644 --- a/util/amdfwtool/amdfwtool.c +++ b/util/amdfwtool/amdfwtool.c @@ -1272,7 +1272,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;