summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/zlib
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-11-14 22:33:41 -0600
committerTimothy Pearson <[email protected]>2011-11-14 22:33:41 -0600
commit0f92dd542b65bc910caaf190b7c623aa5158c86a (patch)
tree120ab7e08fa0ffc354ef58d100f79a33c92aa6e6 /src/3rdparty/zlib
parentd796c9dd933ab96ec83b9a634feedd5d32e1ba3f (diff)
downloadtqt3-0f92dd542b65bc910caaf190b7c623aa5158c86a.tar.gz
tqt3-0f92dd542b65bc910caaf190b7c623aa5158c86a.zip
Fix native TQt3 accidental conversion to tquit
Diffstat (limited to 'src/3rdparty/zlib')
-rw-r--r--src/3rdparty/zlib/deflate.c2
-rw-r--r--src/3rdparty/zlib/deflate.h2
-rw-r--r--src/3rdparty/zlib/gzio.c2
-rw-r--r--src/3rdparty/zlib/zlib.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/3rdparty/zlib/deflate.c b/src/3rdparty/zlib/deflate.c
index 1ca5397c6..7e970d43b 100644
--- a/src/3rdparty/zlib/deflate.c
+++ b/src/3rdparty/zlib/deflate.c
@@ -123,7 +123,7 @@ local void check_match OF((deflate_state *s, IPos start, IPos match,
typedef struct config_s {
ush good_length; /* reduce lazy search above this match length */
ush max_lazy; /* do not perform lazy search above this match length */
- ush nice_length; /* tquit search above this match length */
+ ush nice_length; /* quit search above this match length */
ush max_chain;
compress_func func;
} config;
diff --git a/src/3rdparty/zlib/deflate.h b/src/3rdparty/zlib/deflate.h
index 87b0b582c..410681d18 100644
--- a/src/3rdparty/zlib/deflate.h
+++ b/src/3rdparty/zlib/deflate.h
@@ -110,7 +110,7 @@ typedef struct internal_state {
* bytes. With this organization, matches are limited to a distance of
* wSize-MAX_MATCH bytes, but this ensures that IO is always
* performed with a length multiple of the block size. Also, it limits
- * the window size to 64K, which is tquite useful on MSDOS.
+ * the window size to 64K, which is quite useful on MSDOS.
* To do: use the user input buffer as sliding window.
*/
diff --git a/src/3rdparty/zlib/gzio.c b/src/3rdparty/zlib/gzio.c
index 14213d6ba..74fc49545 100644
--- a/src/3rdparty/zlib/gzio.c
+++ b/src/3rdparty/zlib/gzio.c
@@ -333,7 +333,7 @@ local void check_header(s)
if ((flags & EXTRA_FIELD) != 0) { /* skip the extra field */
len = (uInt)get_byte(s);
len += ((uInt)get_byte(s))<<8;
- /* len is garbage if EOF but the loop below will tquit anyway */
+ /* len is garbage if EOF but the loop below will quit anyway */
while (len-- != 0 && get_byte(s) != EOF) ;
}
if ((flags & ORIG_NAME) != 0) { /* skip the original file name */
diff --git a/src/3rdparty/zlib/zlib.h b/src/3rdparty/zlib/zlib.h
index b4c944227..07c50c676 100644
--- a/src/3rdparty/zlib/zlib.h
+++ b/src/3rdparty/zlib/zlib.h
@@ -563,7 +563,7 @@ ZEXTERN int Q_ZEXPORT deflateCopy OF((z_streamp dest,
tried, for example when there are several ways of pre-processing the input
data with a filter. The streams that will be discarded should then be freed
by calling deflateEnd. Note that deflateCopy duplicates the internal
- compression state which can be tquite large, so this strategy is slow and
+ compression state which can be quite large, so this strategy is slow and
can consume lots of memory.
deflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not