diff mbox series

[U-Boot,1/4] cmd: dtimg: Report invalid index argument

Message ID 20191129192919.27715-2-erosca@de.adit-jv.com
State Changes Requested
Delegated to: Tom Rini
Headers show
Series cmd: dtimg: Enhance with --id and --rev options (take #1) | expand

Commit Message

Eugeniu Rosca Nov. 29, 2019, 7:29 p.m. UTC
Being user-friendly is paramount to make any product likeable and
easy to use. Hence, instead of [1], print [2].

[1] dtimg start 0x48000000 not-a-number myvar
Error: Wrong index

[2] dtimg start 0x48000000 not-a-number myvar
Error: Wrong index 'not-a-number'

Signed-off-by: Eugeniu Rosca <erosca@de.adit-jv.com>
---
 cmd/dtimg.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Sam Protsenko Dec. 4, 2019, 3:46 p.m. UTC | #1
Hi,

On Fri, Nov 29, 2019 at 9:30 PM Eugeniu Rosca <erosca@de.adit-jv.com> wrote:
>
> Being user-friendly is paramount to make any product likeable and
> easy to use. Hence, instead of [1], print [2].
>
> [1] dtimg start 0x48000000 not-a-number myvar
> Error: Wrong index
>
> [2] dtimg start 0x48000000 not-a-number myvar
> Error: Wrong index 'not-a-number'
>
> Signed-off-by: Eugeniu Rosca <erosca@de.adit-jv.com>
> ---

Reviewed-by: Sam Protsenko <semen.protsenko@linaro.org>

>  cmd/dtimg.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/cmd/dtimg.c b/cmd/dtimg.c
> index 6c5d53cc6808..2317c859953d 100644
> --- a/cmd/dtimg.c
> +++ b/cmd/dtimg.c
> @@ -63,7 +63,7 @@ static int dtimg_get_fdt(int argc, char * const argv[], enum cmd_dtimg_info cmd)
>
>         index = simple_strtoul(argv[2], &endp, 0);
>         if (*endp != '\0') {
> -               printf("Error: Wrong index\n");
> +               printf("Error: Wrong index '%s'\n", argv[2]);
>                 return CMD_RET_FAILURE;
>         }
>
> --
> 2.24.0
>
diff mbox series

Patch

diff --git a/cmd/dtimg.c b/cmd/dtimg.c
index 6c5d53cc6808..2317c859953d 100644
--- a/cmd/dtimg.c
+++ b/cmd/dtimg.c
@@ -63,7 +63,7 @@  static int dtimg_get_fdt(int argc, char * const argv[], enum cmd_dtimg_info cmd)
 
 	index = simple_strtoul(argv[2], &endp, 0);
 	if (*endp != '\0') {
-		printf("Error: Wrong index\n");
+		printf("Error: Wrong index '%s'\n", argv[2]);
 		return CMD_RET_FAILURE;
 	}