]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
Fixed formatting for CLEAR_HASH macro.
authorNathan Moinvaziri <nathan@nathanm.com>
Thu, 18 Feb 2021 03:39:00 +0000 (19:39 -0800)
committerHans Kristian Rosbach <hk-github@circlestorm.org>
Sat, 12 Jun 2021 16:26:15 +0000 (18:26 +0200)
deflate.c

index 2aae899be1def1a7580e8f17e3c6afb822235c00..5656e3aba2e7ddae3fe90f53e45656066b2d069d 100644 (file)
--- a/deflate.c
+++ b/deflate.c
@@ -179,7 +179,7 @@ static const config configuration_table[10] = {
 /* ===========================================================================
  * Initialize the hash table. prev[] will be initialized on the fly.
  */
-#define CLEAR_HASH(s) do {                                                                \
+#define CLEAR_HASH(s) do { \
     memset((unsigned char *)s->head, 0, HASH_SIZE * sizeof(*s->head)); \
   } while (0)