aboutsummaryrefslogtreecommitdiff
path: root/env
diff options
context:
space:
mode:
authorIvan Orlov <ivan.orlov@codethink.co.uk>2024-01-08 17:20:45 +0000
committerTom Rini <trini@konsulko.com>2024-01-18 17:50:27 -0500
commit3c3270b5696aa4c4bbd6e837730e5e14b801a1b6 (patch)
treeca39c8431bf3e4c11d033d27a353b23c636cc62c /env
parentbc01d9ff93f350a35c51ddb75f81c2a6f663b1c1 (diff)
downloadu-boot-3c3270b5696aa4c4bbd6e837730e5e14b801a1b6.zip
u-boot-3c3270b5696aa4c4bbd6e837730e5e14b801a1b6.tar.gz
u-boot-3c3270b5696aa4c4bbd6e837730e5e14b801a1b6.tar.bz2
cmd: nvedit: Fix typo in 'illegal character' error
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>
Diffstat (limited to 'env')
-rw-r--r--env/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/env/common.c b/env/common.c
index 656748c..26e5cbe 100644
--- a/env/common.c
+++ b/env/common.c
@@ -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;
}