Change in flashrom[master]: cli_classic: Fix compilation on 32bits

Patrick Rudolph has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/62735 ) Change subject: cli_classic: Fix compilation on 32bits ...................................................................... cli_classic: Fix compilation on 32bits Change-Id: Ifb25cb8b860e1253ea34343fbe0c82977beae5f5 Signed-off-by: Patrick Rudolpg <patrick.rudolph@9elements.com> --- M cli_classic.c 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://review.coreboot.org:29418/flashrom refs/changes/35/62735/1 diff --git a/cli_classic.c b/cli_classic.c index dc3a651..72c9dff 100644 --- a/cli_classic.c +++ b/cli_classic.c @@ -715,7 +715,7 @@ } if (flash_size) { - printf("%ld\n", flashrom_flash_getsize(fill_flash)); + printf("%zd\n", flashrom_flash_getsize(fill_flash)); goto out_shutdown; } -- To view, visit https://review.coreboot.org/c/flashrom/+/62735 To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings Gerrit-Project: flashrom Gerrit-Branch: master Gerrit-Change-Id: Ifb25cb8b860e1253ea34343fbe0c82977beae5f5 Gerrit-Change-Number: 62735 Gerrit-PatchSet: 1 Gerrit-Owner: Patrick Rudolph <patrick.rudolph@9elements.com> Gerrit-MessageType: newchange
participants (1)
-
Patrick Rudolph (Code Review)