diff mbox series

[1/1] dfu: fix typo parameteres

Message ID 20200717175554.11907-1-xypron.glpk@gmx.de
State Accepted
Commit 4e620eb98bcb01bc725dd4434f2dcb74aacec71b
Delegated to: Lukasz Majewski
Headers show
Series [1/1] dfu: fix typo parameteres | expand

Commit Message

Heinrich Schuchardt July 17, 2020, 5:55 p.m. UTC
%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 <xypron.glpk@gmx.de>
---
 common/update.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

--
2.27.0
diff mbox series

Patch

diff --git a/common/update.c b/common/update.c
index 5ffac3acfe..8abc7bc02e 100644
--- a/common/update.c
+++ b/common/update.c
@@ -170,8 +170,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;
 		}