diff options
| author | Ivan Orlov <[email protected]> | 2024-01-08 17:20:45 +0000 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-01-18 17:50:27 -0500 |
| commit | 3c3270b5696aa4c4bbd6e837730e5e14b801a1b6 (patch) | |
| tree | ca39c8431bf3e4c11d033d27a353b23c636cc62c | |
| parent | bc01d9ff93f350a35c51ddb75f81c2a6f663b1c1 (diff) | |
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 <[email protected]>
| -rw-r--r-- | env/common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/env/common.c b/env/common.c index 656748c1f5b..26e5cbef537 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; } |
