diff options
Diffstat (limited to 'shell/shell_common.c')
-rw-r--r-- | shell/shell_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/shell_common.c b/shell/shell_common.c index e0582ad..a935339 100644 --- a/shell/shell_common.c +++ b/shell/shell_common.c @@ -619,7 +619,7 @@ shell_builtin_ulimit(char **argv) limit.rlim_cur = val; //bb_error_msg("setrlimit(%d, %lld, %lld)", limits_tbl[i].cmd, (long long)limit.rlim_cur, (long long)limit.rlim_max); if (setrlimit(limits_tbl[i].cmd, &limit) < 0) { - bb_perror_msg("error setting limit"); + bb_simple_perror_msg("error setting limit"); return EXIT_FAILURE; } } |