diff options
author | Ron Yorston <rmy@pobox.com> | 2015-10-13 14:45:51 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2015-10-13 14:45:51 +0100 |
commit | 8e509f11bceeec419abc718300bef7422d1fee4c (patch) | |
tree | fdfbc752ad94102e3613a5d7254f14a93eaf7f56 /shell/shell_common.c | |
parent | 420f5edfe7676fe6e7cddbbf15c04649d096e422 (diff) | |
parent | 4d0c1ea4784c9844f8468d97ca5c26d3c70f9921 (diff) | |
download | busybox-w32-8e509f11bceeec419abc718300bef7422d1fee4c.tar.gz busybox-w32-8e509f11bceeec419abc718300bef7422d1fee4c.tar.bz2 busybox-w32-8e509f11bceeec419abc718300bef7422d1fee4c.zip |
Merge branch 'busybox' into merge
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 1567d1de4..dbd4286bf 100644 --- a/shell/shell_common.c +++ b/shell/shell_common.c | |||
@@ -387,7 +387,7 @@ static void printlim(unsigned opts, const struct rlimit *limit, | |||
387 | val = limit->rlim_cur; | 387 | val = limit->rlim_cur; |
388 | 388 | ||
389 | if (val == RLIM_INFINITY) | 389 | if (val == RLIM_INFINITY) |
390 | printf("unlimited\n"); | 390 | puts("unlimited"); |
391 | else { | 391 | else { |
392 | val >>= l->factor_shift; | 392 | val >>= l->factor_shift; |
393 | printf("%llu\n", (long long) val); | 393 | printf("%llu\n", (long long) val); |