git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bc01d9f
)
cmd: nvedit: Fix typo in 'illegal character' error
author
Ivan Orlov
<ivan.orlov@codethink.co.uk>
Mon, 8 Jan 2024 17:20:45 +0000
(17:20 +0000)
committer
Tom 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
patch
|
blob
|
history
diff --git
a/env/common.c
b/env/common.c
index
656748c
..
26e5cbe
100644
(file)
--- 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;
}