Angel Pons has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/54910 )
Change subject: dummyflasher.c: Fix typo in log message ......................................................................
dummyflasher.c: Fix typo in log message
multipler ---> multiple
Change-Id: I16fbc0072c82ac152af5f1d65df196cdd113e03b Signed-off-by: Angel Pons th3fanbus@gmail.com --- M dummyflasher.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/10/54910/1
diff --git a/dummyflasher.c b/dummyflasher.c index 5109483..cf657df 100644 --- a/dummyflasher.c +++ b/dummyflasher.c @@ -841,7 +841,7 @@ if (tmp) { size = strtol(tmp, NULL, 10); if (size <= 0 || (size % 1024 != 0)) { - msg_perr("%s: Chip size is not a multipler of 1024: %s\n", + msg_perr("%s: Chip size is not a multiple of 1024: %s\n", __func__, tmp); free(tmp); return 1;