aboutsummaryrefslogtreecommitdiff
path: root/dep/src
diff options
context:
space:
mode:
Diffstat (limited to 'dep/src')
-rw-r--r--dep/src/zlib/infback.c2
-rw-r--r--dep/src/zlib/inflate.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/dep/src/zlib/infback.c b/dep/src/zlib/infback.c
index 781be49c171..1acf0a56d75 100644
--- a/dep/src/zlib/infback.c
+++ b/dep/src/zlib/infback.c
@@ -278,7 +278,7 @@ void FAR *out_desc;
left = state->wsize;
/* Inflate until end of block marked as last */
- for (; ; )
+ for (;;)
switch (state->mode) {
case TYPE:
/* determine and dispatch block type */
diff --git a/dep/src/zlib/inflate.c b/dep/src/zlib/inflate.c
index 6b7a57e747c..fcefa8ceff3 100644
--- a/dep/src/zlib/inflate.c
+++ b/dep/src/zlib/inflate.c
@@ -584,7 +584,7 @@ int flush;
in = have;
out = left;
ret = Z_OK;
- for (; ; )
+ for (;;)
switch (state->mode) {
case HEAD:
if (state->wrap == 0) {