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 2b6f7dc92..8c9607c8c 100644 --- a/shell/shell_common.c +++ b/shell/shell_common.c | |||
@@ -380,7 +380,7 @@ static void printlim(unsigned opts, const struct rlimit *limit, | |||
380 | val = limit->rlim_cur; | 380 | val = limit->rlim_cur; |
381 | 381 | ||
382 | if (val == RLIM_INFINITY) | 382 | if (val == RLIM_INFINITY) |
383 | printf("unlimited\n"); | 383 | puts("unlimited"); |
384 | else { | 384 | else { |
385 | val >>= l->factor_shift; | 385 | val >>= l->factor_shift; |
386 | printf("%llu\n", (long long) val); | 386 | printf("%llu\n", (long long) val); |