diff options
Diffstat (limited to 'coreutils/env.c')
-rw-r--r-- | coreutils/env.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/env.c b/coreutils/env.c index 878068f09..c37c0c2df 100644 --- a/coreutils/env.c +++ b/coreutils/env.c | |||
@@ -79,7 +79,7 @@ int env_main(int argc UNUSED_PARAM, char **argv) | |||
79 | 79 | ||
80 | while (*argv && (strchr(*argv, '=') != NULL)) { | 80 | while (*argv && (strchr(*argv, '=') != NULL)) { |
81 | if (putenv(*argv) < 0) { | 81 | if (putenv(*argv) < 0) { |
82 | bb_perror_msg_and_die("putenv"); | 82 | bb_simple_perror_msg_and_die("putenv"); |
83 | } | 83 | } |
84 | ++argv; | 84 | ++argv; |
85 | } | 85 | } |