Index: boot/generic/src/inflate.c
===================================================================
--- boot/generic/src/inflate.c	(revision 1abcf1db7c2a8071caaf9983f1571b2ef88e1be6)
+++ boot/generic/src/inflate.c	(revision 3cf22f98e8b62fe3239495266885864a48c85a80)
@@ -418,6 +418,6 @@
  *
  */
-static int inflate_codes(inflate_state_t *state, huffman_t* len_code,
-    huffman_t* dist_code)
+static int inflate_codes(inflate_state_t *state, huffman_t *len_code,
+    huffman_t *dist_code)
 {
 	uint16_t symbol;
@@ -460,6 +460,6 @@
 			while (len > 0) {
 				/* Copy len bytes from distance bytes back */
-				state->dest[state->destcnt]
-				    = state->dest[state->destcnt - dist];
+				state->dest[state->destcnt] =
+				    state->dest[state->destcnt - dist];
 				state->destcnt++;
 				len--;
@@ -527,6 +527,6 @@
 	CHECK_OVERRUN(*state);
 
-	if ((nlen > MAX_LITLEN) || (ndist > MAX_DIST)
-	    || (ncode > MAX_ORDER))
+	if ((nlen > MAX_LITLEN) || (ndist > MAX_DIST) ||
+	    (ncode > MAX_ORDER))
 		return EINVAL;
 
