diff options
Diffstat (limited to 'coreutils/head.c')
-rw-r--r-- | coreutils/head.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/head.c b/coreutils/head.c index e961ca6b6..8dc6ee0b4 100644 --- a/coreutils/head.c +++ b/coreutils/head.c | |||
@@ -28,7 +28,7 @@ static const struct suffix_mult head_suffixes[] = { | |||
28 | { NULL, 0 } | 28 | { NULL, 0 } |
29 | }; | 29 | }; |
30 | #endif | 30 | #endif |
31 | 31 | ||
32 | static const char header_fmt_str[] = "\n==> %s <==\n"; | 32 | static const char header_fmt_str[] = "\n==> %s <==\n"; |
33 | 33 | ||
34 | int head_main(int argc, char **argv) | 34 | int head_main(int argc, char **argv) |
@@ -83,8 +83,8 @@ int head_main(int argc, char **argv) | |||
83 | #if !ENABLE_FEATURE_FANCY_HEAD | 83 | #if !ENABLE_FEATURE_FANCY_HEAD |
84 | count = bb_xgetularg10(p); | 84 | count = bb_xgetularg10(p); |
85 | #else | 85 | #else |
86 | count = bb_xgetularg_bnd_sfx(p, 10, | 86 | count = bb_xgetularg_bnd_sfx(p, 10, |
87 | 0, ULONG_MAX, | 87 | 0, ULONG_MAX, |
88 | head_suffixes); | 88 | head_suffixes); |
89 | #endif | 89 | #endif |
90 | break; | 90 | break; |