]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Remove unused variables
authorhansr <hk-git@circlestorm.org>
Mon, 13 Oct 2014 10:13:50 +0000 (12:13 +0200)
committerhansr <hk-git@circlestorm.org>
Mon, 13 Oct 2014 10:13:50 +0000 (12:13 +0200)
deflate.c

index f88c01b03ebbbb63a71adf5582464ee2838af612..c97c1bf56ff468bb22e11471a6259e5f2a7fa01a 100644 (file)
--- 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