Nico Huber has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/30152
Change subject: fmap: Fix length calculation in error message ......................................................................
fmap: Fix length calculation in error message
Change-Id: Ie0f448970de6a7829f304448e0835eaeb7d103a3 Signed-off-by: Nico Huber nico.huber@secunet.com --- M fmap.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/52/30152/1
diff --git a/fmap.c b/fmap.c index d44b7fa..84b3b54 100644 --- a/fmap.c +++ b/fmap.c @@ -243,7 +243,7 @@ if (flashctx->chip->read(flashctx, (uint8_t *)fmap + sig_len, offset + sig_len, sizeof(*fmap) - sig_len)) { msg_cerr("Cannot read %zu bytes at offset %06zx\n", - sizeof(*fmap) + sig_len, offset + sig_len); + sizeof(*fmap) - sig_len, offset + sig_len); continue; }