From: hansr Date: Mon, 13 Oct 2014 10:13:50 +0000 (+0200) Subject: Remove unused variables X-Git-Tag: 1.9.9-b1~921 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6bdb585b7f19a040c3800c9f462fe1d64665916b;p=thirdparty%2Fzlib-ng.git Remove unused variables --- diff --git a/deflate.c b/deflate.c index f88c01b03..c97c1bf56 100644 --- a/deflate.c +++ b/deflate.c @@ -1333,7 +1333,6 @@ local void fill_window_c(s) */ { int i; - unsigned m; typeof(p) q = p - n; for (i = 0; i < n; i++) { Pos m = *q; @@ -1358,16 +1357,12 @@ local void fill_window_c(s) #else { int i; - unsigned m; typeof(p) q = p - n; for (i = 0; i < n; i++) { Pos m = *q; Pos t = wsize; *q++ = (Pos)(m >= t ? m-t: NIL); } - p = p - n; - m = *p; - n = 0; } #endif /* NOT_TWEAK_COMPILER */ #endif