aboutsummaryrefslogtreecommitdiff
path: root/shell/hush.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush.c')
-rw-r--r--shell/hush.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/hush.c b/shell/hush.c
index fcfbd06f3..df81eaae7 100644
--- a/shell/hush.c
+++ b/shell/hush.c
@@ -7949,7 +7949,7 @@ static int FAST_FUNC builtin_umask(char **argv)
* bash: umask: 'q': invalid symbolic mode operator
* bash: umask: 999: octal number out of range
*/
- bb_error_msg("umask: '%s' invalid mode", argv[0]);
+ bb_error_msg("%s: invalid mode '%s'", "umask", argv[0]);
}
} else {
rc = 1;