diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/tail.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/tail.c b/coreutils/tail.c index 8e6488931..dc5918d6b 100644 --- a/coreutils/tail.c +++ b/coreutils/tail.c @@ -39,8 +39,8 @@ static struct suffix_mult null_suffixes[] = { }; #endif -#define BYTES 0 -#define LINES 1 +static const int BYTES = 0; +static const int LINES = 1; static char *tailbuf; static int taillen; |