From: Jim Meyering Date: Sun, 28 May 1995 02:04:55 +0000 (+0000) Subject: (main): Remove dcl of and statements that set now-unused variable. X-Git-Tag: textutils-1_12_1~141 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4657b1e9ec481befddcf70b2312b7e18e18a5a0a;p=thirdparty%2Fcoreutils.git (main): Remove dcl of and statements that set now-unused variable. --- diff --git a/src/tail.c b/src/tail.c index 92743147b0..cbe05c73c1 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 == '+') {