From 4e620eb98bcb01bc725dd4434f2dcb74aacec71b Mon Sep 17 00:00:00 2001 From: Heinrich Schuchardt Date: Fri, 17 Jul 2020 19:55:54 +0200 Subject: [PATCH] dfu: fix typo parameteres %s/parameteres/parameters/g Even if a line exceeds 80 characters we should not split output strings to make debugging easier. Signed-off-by: Heinrich Schuchardt --- common/update.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/update.c b/common/update.c index c8dd346a09..d8854791d2 100644 --- a/common/update.c +++ b/common/update.c @@ -309,8 +309,7 @@ got_update_file: printf("\n"); if (update_fit_getparams(fit, noffset, &update_addr, &update_fladdr, &update_size)) { - printf("Error: can't get update parameteres, " - "aborting\n"); + printf("Error: can't get update parameters, aborting\n"); ret = 1; goto next_node; } -- GitLab