diff options
Diffstat (limited to 'tail.c')
-rw-r--r-- | tail.c | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -37,12 +37,6 @@ static const struct suffix_mult tail_suffixes[] = { | |||
37 | { NULL, 0 } | 37 | { NULL, 0 } |
38 | }; | 38 | }; |
39 | 39 | ||
40 | #ifndef BB_FEATURE_SIMPLE_TAIL | ||
41 | static const struct suffix_mult null_suffixes[] = { | ||
42 | { NULL, 0 } | ||
43 | }; | ||
44 | #endif | ||
45 | |||
46 | static const int BYTES = 0; | 40 | static const int BYTES = 0; |
47 | static const int LINES = 1; | 41 | static const int LINES = 1; |
48 | 42 | ||
@@ -96,7 +90,7 @@ int tail_main(int argc, char **argv) | |||
96 | hide_headers = 1; | 90 | hide_headers = 1; |
97 | break; | 91 | break; |
98 | case 's': | 92 | case 's': |
99 | sleep_period = parse_number(optarg, null_suffixes); | 93 | sleep_period = parse_number(optarg, 0); |
100 | break; | 94 | break; |
101 | case 'v': | 95 | case 'v': |
102 | show_headers = 1; | 96 | show_headers = 1; |