Index: uspace/lib/compress/inflate.c
===================================================================
--- uspace/lib/compress/inflate.c	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ uspace/lib/compress/inflate.c	(revision 36470ce8f1d0f0e1ac58746fc8bd8bf3bed80974)
@@ -418,6 +418,6 @@
  *
  */
-static errno_t inflate_codes(inflate_state_t *state, huffman_t* len_code,
-    huffman_t* dist_code)
+static errno_t 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;
 
