diff options
author | Jim Meyering <jim@meyering.net> | 1995-05-28 02:04:55 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1995-05-28 02:04:55 +0000 |
commit | 4657b1e9ec481befddcf70b2312b7e18e18a5a0a (patch) | |
tree | b88b6cc12a714d4a020da06b41718151e1ccc7f9 /src/tail.c | |
parent | 4fb3e0f061fbb49ada0463a125bd68a152105358 (diff) | |
download | coreutils-4657b1e9ec481befddcf70b2312b7e18e18a5a0a.tar.xz |
(main): Remove dcl of and statements that set now-unused variable.
Diffstat (limited to 'src/tail.c')
-rw-r--r-- | src/tail.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/tail.c b/src/tail.c index 92743147b..cbe05c73c 100644 --- a/src/tail.c +++ b/src/tail.c @@ -227,7 +227,6 @@ main (argc, argv) while ((c = getopt_long (argc, argv, "c:n:fqv", long_options, (int *) 0)) != EOF) { - int allow_bkm_suffix; strtol_error s_err; switch (c) @@ -237,12 +236,10 @@ main (argc, argv) case 'c': count_lines = 0; - allow_bkm_suffix = 1; goto getnum; case 'n': count_lines = 1; - allow_bkm_suffix = 0; getnum: if (*optarg == '+') { |