From: Sami Kerola Date: Sun, 7 Jul 2013 19:54:31 +0000 (+0100) Subject: more: assigned value is never read [clang-analyzer] X-Git-Tag: v2.24-rc1~440 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f4ec8fa2e30022a31dc45ae76cbaf944901b8438;p=thirdparty%2Futil-linux.git more: assigned value is never read [clang-analyzer] Signed-off-by: Sami Kerola --- diff --git a/text-utils/more.c b/text-utils/more.c index 66de2bf943..8888a083ba 100644 --- a/text-utils/more.c +++ b/text-utils/more.c @@ -1580,7 +1580,7 @@ void search(char buf[], FILE *file, register int n) long startline = Ftell(file); register long line1 = startline; register long line2 = startline; - register long line3 = startline; + register long line3; register int lncount; int saveln, rc; regex_t re;