summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/zlib/deflate.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/zlib/deflate.c')
-rw-r--r--src/3rdparty/zlib/deflate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/3rdparty/zlib/deflate.c b/src/3rdparty/zlib/deflate.c
index c7f75a3e..0fc53bc1 100644
--- a/src/3rdparty/zlib/deflate.c
+++ b/src/3rdparty/zlib/deflate.c
@@ -154,7 +154,7 @@ local const config configuration_table[10] = {
* meaning.
*/
-#define ETQUAL 0
+#define EQUAL 0
/* result of memcmp for equal strings */
#ifndef NO_DUMMY_DECL
@@ -1064,7 +1064,7 @@ local void check_match(s, start, match, length)
{
/* check that the match is indeed a match */
if (zmemcmp(s->window + match,
- s->window + start, length) != ETQUAL) {
+ s->window + start, length) != EQUAL) {
fprintf(stderr, " start %u, match %u, length %d\n",
start, match, length);
do {