Skip to content

Commit cf71ac1

Browse files
committed
Correct duplicate 'the' in help messages in zlib.h and xx_bitstream.h (fixes #1034)
1 parent 1b7a844 commit cf71ac1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/lib_ccx/cc_bitstream.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ struct bitstream
2020
// This is meant to store high level syntax errors, i.e a function
2121
// using the bitstream functions found a syntax error.
2222
int error;
23-
// Internal (private) variable - used to store the the bitstream
23+
// Internal (private) variable - used to store the bitstream
2424
// position until it is decided if the bitstream pointer will be
2525
// increased by the calling function, or not.
2626
unsigned char *_i_pos;

src/thirdparty/zlib/zlib.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ ZEXTERN int ZEXPORT deflateParams OF((z_streamp strm,
729729
Then no more input data should be provided before the deflateParams() call.
730730
If this is done, the old level and strategy will be applied to the data
731731
compressed before deflateParams(), and the new level and strategy will be
732-
applied to the the data compressed after deflateParams().
732+
applied to the data compressed after deflateParams().
733733
734734
deflateParams returns Z_OK on success, Z_STREAM_ERROR if the source stream
735735
state was inconsistent or if a parameter was invalid, or Z_BUF_ERROR if

0 commit comments

Comments
 (0)