]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
cmd: nvedit: Fix typo in 'illegal character' error
authorIvan Orlov <ivan.orlov@codethink.co.uk>
Mon, 8 Jan 2024 17:20:45 +0000 (17:20 +0000)
committerTom Rini <trini@konsulko.com>
Thu, 18 Jan 2024 22:50:27 +0000 (17:50 -0500)
Fix a typo: add a space after the single quote in 'illegal character'
error message in 'env set' command

Signed-off-by: Ivan Orlov <ivan.orlov@codethink.co.uk>
env/common.c

index 656748c1f5b72cf9ddfec5ea3611b85fab207c41..26e5cbef53741c72b70f570f4c9aa938ae9d5a07 100644 (file)
@@ -85,7 +85,7 @@ int env_do_env_set(int flag, int argc, char *const argv[], int env_flag)
        name = argv[1];
 
        if (strchr(name, '=')) {
-               printf("## Error: illegal character '='"
+               printf("## Error: illegal character '=' "
                       "in variable name \"%s\"\n", name);
                return 1;
        }