diff options
author | Denis Vlasenko | 2006-09-17 16:28:10 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-09-17 16:28:10 +0000 |
commit | 9213a9e0f2d8fd638ecd02e2628d96dd5c7d233e (patch) | |
tree | 94c3c0678d1349497abe2db6004e9331e50f6d37 /coreutils/head.c | |
parent | a6127aacef047ed7661722705b052811fbe7f467 (diff) | |
download | busybox-9213a9e0f2d8fd638ecd02e2628d96dd5c7d233e.zip busybox-9213a9e0f2d8fd638ecd02e2628d96dd5c7d233e.tar.gz |
whitespace cleanup
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 e961ca6..8dc6ee0 100644 --- a/coreutils/head.c +++ b/coreutils/head.c @@ -28,7 +28,7 @@ static const struct suffix_mult head_suffixes[] = { { NULL, 0 } }; #endif - + static const char header_fmt_str[] = "\n==> %s <==\n"; int head_main(int argc, char **argv) @@ -83,8 +83,8 @@ int head_main(int argc, char **argv) #if !ENABLE_FEATURE_FANCY_HEAD count = bb_xgetularg10(p); #else - count = bb_xgetularg_bnd_sfx(p, 10, - 0, ULONG_MAX, + count = bb_xgetularg_bnd_sfx(p, 10, + 0, ULONG_MAX, head_suffixes); #endif break; |