SDL_image: miniz.h: fix -Wmisleading-indentation warnings (again..)

From 1ef7f653182bdcc0a0639377a241432817974fde Mon Sep 17 00:00:00 2001
From: Ozkan Sezer <[EMAIL REDACTED]>
Date: Sun, 4 Dec 2022 20:32:56 +0300
Subject: [PATCH] miniz.h: fix -Wmisleading-indentation warnings (again..)

---
 miniz.h | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/miniz.h b/miniz.h
index b213c4eb..766940a6 100644
--- a/miniz.h
+++ b/miniz.h
@@ -2414,10 +2414,15 @@ static MZ_FORCEINLINE void tdefl_find_match(tdefl_compressor *d, mz_uint lookahe
       TDEFL_PROBE;
       TDEFL_PROBE;
     }
-    if (!dist) break; p = s; q = d->m_dict + probe_pos; for (probe_len = 0; probe_len < max_match_len; probe_len++) if (*p++ != *q++) break;
+    if (!dist) break;
+    p = s; q = d->m_dict + probe_pos;
+    for (probe_len = 0; probe_len < max_match_len; probe_len++) {
+        if (*p++ != *q++) break;
+    }
     if (probe_len > match_len)
     {
-      *pMatch_dist = dist; if ((*pMatch_len = match_len = probe_len) == max_match_len) return;
+      *pMatch_dist = dist;
+      if ((*pMatch_len = match_len = probe_len) == max_match_len) return;
       c0 = d->m_dict[pos + match_len]; c1 = d->m_dict[pos + match_len - 1];
     }
   }