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>
This commit is contained in:
Ivan Orlov 2024-01-08 17:20:45 +00:00 committed by Tom Rini
parent bc01d9ff93
commit 3c3270b569

2
env/common.c vendored
View 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;
}