summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/src/3rdparty/zlib/deflate.c
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-10 12:13:27 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-08-10 12:13:27 -0500
commitb6c6d9f8dd1221e5d9dc5b674e93797761470024 (patch)
tree94563ba51148e9fd71f5c8df86439c84945d5d81 /experimental/tqtinterface/qt4/src/3rdparty/zlib/deflate.c
parent03256f3cd5149f3ff5f5f45765b0b0659db4e036 (diff)
downloadtde-b6c6d9f8dd1221e5d9dc5b674e93797761470024.tar.gz
tde-b6c6d9f8dd1221e5d9dc5b674e93797761470024.zip
rename the following methods:
tqparent parent tqmask mask
Diffstat (limited to 'experimental/tqtinterface/qt4/src/3rdparty/zlib/deflate.c')
-rw-r--r--experimental/tqtinterface/qt4/src/3rdparty/zlib/deflate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/experimental/tqtinterface/qt4/src/3rdparty/zlib/deflate.c b/experimental/tqtinterface/qt4/src/3rdparty/zlib/deflate.c
index 87d2da14e..c7f75a3ec 100644
--- a/experimental/tqtinterface/qt4/src/3rdparty/zlib/deflate.c
+++ b/experimental/tqtinterface/qt4/src/3rdparty/zlib/deflate.c
@@ -873,7 +873,7 @@ local uInt longest_match(s, cur_match)
* we prevent matches with the string of window index 0.
*/
Posf *prev = s->prev;
- uInt wtqmask = s->w_mask;
+ uInt wmask = s->w_mask;
#ifdef UNALIGNED_OK
/* Compare two bytes at a time. Note: this is not always beneficial.
@@ -988,7 +988,7 @@ local uInt longest_match(s, cur_match)
scan_end = scan[best_len];
#endif
}
- } while ((cur_match = prev[cur_match & wtqmask]) > limit
+ } while ((cur_match = prev[cur_match & wmask]) > limit
&& --chain_length != 0);
if ((uInt)best_len <= s->lookahead) return (uInt)best_len;