From a7b5a7a6cbec3684594437d9668cf65fcffc528f Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Sun, 6 Aug 2023 13:56:45 +0200 Subject: [PATCH] Discard repeated words --- contrib/infback9/inftree9.h | 2 +- contrib/minizip/unzip.c | 4 ++-- contrib/minizip/zip.c | 4 ++-- contrib/minizip/zip.h | 4 ++-- contrib/puff/puff.c | 2 +- examples/gzlog.c | 4 ++-- examples/zran.c | 2 +- test/minigzip.c | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/contrib/infback9/inftree9.h b/contrib/infback9/inftree9.h index 2c1252f57..23ec2000e 100644 --- a/contrib/infback9/inftree9.h +++ b/contrib/infback9/inftree9.h @@ -41,7 +41,7 @@ typedef struct { examples/enough.c found in the zlib distribution. The arguments to that program are the number of symbols, the initial root table size, and the maximum bit length of a code. "enough 286 9 15" for literal/length codes - returns returns 852, and "enough 32 6 15" for distance codes returns 594. + returns 852, and "enough 32 6 15" for distance codes returns 594. The initial root table size (9 or 6) is found in the fifth argument of the inflate_table() calls in infback9.c. If the root table size is changed, then these maximum sizes would be need to be recalculated and updated. */ diff --git a/contrib/minizip/unzip.c b/contrib/minizip/unzip.c index 7a35c8663..bf05574e2 100644 --- a/contrib/minizip/unzip.c +++ b/contrib/minizip/unzip.c @@ -502,9 +502,9 @@ local unzFile unzOpenInternal(const void *path, ZPOS64_T central_pos; uLong uL; - uLong number_disk; /* number of the current dist, used for + uLong number_disk; /* number of the current disk, used for spanning ZIP, unsupported, always 0*/ - uLong number_disk_with_CD; /* number the the disk with central dir, used + uLong number_disk_with_CD; /* number of the disk with central dir, used for spanning ZIP, unsupported, always 0*/ ZPOS64_T number_entry_CD; /* total number of entries in the central dir diff --git a/contrib/minizip/zip.c b/contrib/minizip/zip.c index ac4e243c9..6829bd9e5 100644 --- a/contrib/minizip/zip.c +++ b/contrib/minizip/zip.c @@ -619,9 +619,9 @@ local int LoadCentralDirectoryRecord(zip64_internal* pziinit) { ZPOS64_T central_pos; uLong uL; - uLong number_disk; /* number of the current dist, used for + uLong number_disk; /* number of the current disk, used for spanning ZIP, unsupported, always 0*/ - uLong number_disk_with_CD; /* number the the disk with central dir, used + uLong number_disk_with_CD; /* number the disk with central dir, used for spanning ZIP, unsupported, always 0*/ ZPOS64_T number_entry; ZPOS64_T number_entry_CD; /* total number of entries in diff --git a/contrib/minizip/zip.h b/contrib/minizip/zip.h index 5fc084132..475f206b4 100644 --- a/contrib/minizip/zip.h +++ b/contrib/minizip/zip.h @@ -177,9 +177,9 @@ extern int ZEXPORT zipOpenNewFileInZip64(zipFile file, filename : the filename in zip (if NULL, '-' without quote will be used *zipfi contain supplemental information if extrafield_local!=NULL and size_extrafield_local>0, extrafield_local - contains the extrafield data the the local header + contains the extrafield data of the local header if extrafield_global!=NULL and size_extrafield_global>0, extrafield_global - contains the extrafield data the the local header + contains the extrafield data of the local header if comment != NULL, comment contain the comment string method contain the compression method (0 for store, Z_DEFLATED for deflate) level contain the level of compression (can be Z_DEFAULT_COMPRESSION) diff --git a/contrib/puff/puff.c b/contrib/puff/puff.c index 6737ff615..0a7002dcc 100644 --- a/contrib/puff/puff.c +++ b/contrib/puff/puff.c @@ -594,7 +594,7 @@ local int fixed(struct state *s) * distance symbols. * * - If a symbol is not used in the block, this is represented by a zero as - * as the code length. This does not mean a zero-length code, but rather + * the code length. This does not mean a zero-length code, but rather * that no code should be created for this symbol. There is no way in the * deflate format to represent a zero-length code. * diff --git a/examples/gzlog.c b/examples/gzlog.c index b977802dd..da1b02e73 100644 --- a/examples/gzlog.c +++ b/examples/gzlog.c @@ -212,8 +212,8 @@ to the appropriate recovery below. If there is no foo.add file, provide a zero data length to the recovery. In that case, the append recovery restores the foo.gz to the previous compressed + uncompressed data state. - For the the compress recovery, a missing foo.add file results in foo.gz - being restored to the previous compressed-only data state. + For the compress recovery, a missing foo.add file results in foo.gz being + restored to the previous compressed-only data state. - Append recovery: - Pick up append at + step above - Compress recovery: diff --git a/examples/zran.c b/examples/zran.c index 32c93686c..d3135955b 100644 --- a/examples/zran.c +++ b/examples/zran.c @@ -267,7 +267,7 @@ static inline void append_bits(unsigned value, int bits, } } -// Insert enough bits in the form of empty deflate blocks in front of the the +// Insert enough bits in the form of empty deflate blocks in front of the // low bits bits of value, in order to bring the sequence to a byte boundary. // Then feed that to inflate(). This does what inflatePrime() does, except that // a negative value of bits is not supported. bits must be in 0..16. If the diff --git a/test/minigzip.c b/test/minigzip.c index 8a21ddfb5..04ee98334 100644 --- a/test/minigzip.c +++ b/test/minigzip.c @@ -303,7 +303,7 @@ void error(const char *msg) { #ifdef USE_MMAP /* MMAP version, Miguel Albrecht */ /* Try compressing the input file at once using mmap. Return Z_OK if - * if success, Z_ERRNO otherwise. + * success, Z_ERRNO otherwise. */ int gz_compress_mmap(FILE *in, gzFile out) { int len;