changeset 1612:749f8f808531

Cleanups.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 15 May 2018 12:00:43 +0300
parents 3571d4670964
children 70b04c16aa40
files src/dmzlib.c
diffstat 1 files changed, 11 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/src/dmzlib.c	Tue May 15 11:58:46 2018 +0300
+++ b/src/dmzlib.c	Tue May 15 12:00:43 2018 +0300
@@ -286,21 +286,26 @@
 
 static const int dm_zlib_length_extra[31] =
 {
-    0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4,
-    5, 5, 5, 5, 0, 0, 0
+    0, 0, 0, 0, 0, 0, 0, 0,
+    1, 1, 1, 1,
+    2, 2, 2, 2,
+    3, 3, 3, 3,
+    4, 4, 4, 4,
+    5, 5, 5, 5,
+    0, 0, 0
 };
 
 static const int dm_zlib_dist_base[32] =
 {
     1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193,
-    257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289,
-    16385, 24577, 0, 0
+    257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193,
+    12289, 16385, 24577, 0, 0
 };
 
 static const int dm_zlib_dist_extra[32] =
 {
-    0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10,
-    10, 11, 11, 12, 12, 13, 13
+    0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8,
+    9, 9, 10, 10, 11, 11, 12, 12, 13, 13
 };