From 9f418e1028d98cd4782fd3a2b883eaaf1a09cae5 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Fri, 15 Mar 2024 17:49:20 -0700 Subject: [PATCH] Update old comment in inflate.h. --- inflate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inflate.h b/inflate.h index f127b6b..f758e0d 100644 --- a/inflate.h +++ b/inflate.h @@ -100,7 +100,7 @@ struct inflate_state { unsigned char FAR *window; /* allocated sliding window, if needed */ /* bit accumulator */ unsigned long hold; /* input bit accumulator */ - unsigned bits; /* number of bits in "in" */ + unsigned bits; /* number of bits in hold */ /* for string and stored block copying */ unsigned length; /* literal or length of data to copy */ unsigned offset; /* distance back to copy string from */