summaryrefslogtreecommitdiff
path: root/zlib
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2005-07-07 20:16:41 +0000
committerWayne Davison <wayned@samba.org>2005-07-07 20:16:41 +0000
commit687c6b14a01fb462ded54fbf0da5bb4443251f48 (patch)
treea8f40aa980f829940f1f22e29283d54ebadf9083 /zlib
parenta1f99493b39610e2ea9deb4bb1c71ba63bce5834 (diff)
downloadrsync-687c6b14a01fb462ded54fbf0da5bb4443251f48.tar.gz
Changed "Overflow" back to "overflow".
Diffstat (limited to 'zlib')
-rw-r--r--zlib/trees.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/zlib/trees.c b/zlib/trees.c
index b830aa42..91dacdc6 100644
--- a/zlib/trees.c
+++ b/zlib/trees.c
@@ -505,7 +505,7 @@ local void gen_bitlen(s, desc)
int bits; /* bit length */
int xbits; /* extra bits */
ush f; /* frequency */
- int Overflow = 0; /* number of elements with bit length too large */
+ int overflow = 0; /* number of elements with bit length too large */
for (bits = 0; bits <= MAX_BITS; bits++) s->bl_count[bits] = 0;
@@ -517,7 +517,7 @@ local void gen_bitlen(s, desc)
for (h = s->heap_max+1; h < HEAP_SIZE; h++) {
n = s->heap[h];
bits = tree[tree[n].Dad].Len + 1;
- if (bits > max_length) bits = max_length, Overflow++;
+ if (bits > max_length) bits = max_length, overflow++;
tree[n].Len = (ush)bits;
/* We overwrite tree[n].Dad which is no longer needed */
@@ -530,7 +530,7 @@ local void gen_bitlen(s, desc)
s->opt_len += (ulg)f * (bits + xbits);
if (stree) s->static_len += (ulg)f * (stree[n].Len + xbits);
}
- if (Overflow == 0) return;
+ if (overflow == 0) return;
Trace((stderr,"\nbit length overflow\n"));
/* This happens for example on obj2 and pic of the Calgary corpus */
@@ -545,8 +545,8 @@ local void gen_bitlen(s, desc)
/* The brother of the overflow item also moves one step up,
* but this does not affect bl_count[max_length]
*/
- Overflow -= 2;
- } while (Overflow > 0);
+ overflow -= 2;
+ } while (overflow > 0);
/* Now recompute all bit lengths, scanning in increasing frequency.
* h is still equal to HEAP_SIZE. (It is simpler to reconstruct all