diff options
author | Heinrich Schuchardt | 2020-07-17 19:55:54 +0200 |
---|---|---|
committer | Marek Vasut | 2020-09-01 14:47:43 +0200 |
commit | 4e620eb98bcb01bc725dd4434f2dcb74aacec71b (patch) | |
tree | 0166cde7faa9b7015f648b33d0287ea3f43448f9 /common/update.c | |
parent | a17c0cb85e3abe8601efaadbb287116d1142fefd (diff) |
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 <xypron.glpk@gmx.de>
Diffstat (limited to 'common/update.c')
-rw-r--r-- | common/update.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/common/update.c b/common/update.c index c8dd346a095..d8854791d2a 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; } |