From: hansr Date: Thu, 16 Oct 2014 11:33:16 +0000 (+0200) Subject: Remove use of typedef() X-Git-Tag: 1.9.9-b1~906 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78af3d50d814920ae05029436e8a50e10585d597;p=thirdparty%2Fzlib-ng.git Remove use of typedef() --- diff --git a/deflate.c b/deflate.c index d09fcb5af..c8fea7619 100644 --- a/deflate.c +++ b/deflate.c @@ -1303,7 +1303,7 @@ local void fill_window_c(s) */ { int i; - typeof(p) q = p - n; + Pos *q = p - n; for (i = 0; i < n; i++) { Pos m = *q; Pos t = wsize; @@ -1326,7 +1326,7 @@ local void fill_window_c(s) #else { int i; - typeof(p) q = p - n; + Pos *q = p - n; for (i = 0; i < n; i++) { Pos m = *q; Pos t = wsize;