Index: boot/generic/src/inflate.c
===================================================================
--- boot/generic/src/inflate.c	(revision 6ff23ff32c8aa9d6ad8d06f1743ca1b0d68c14bc)
+++ boot/generic/src/inflate.c	(revision 29c3c722f633a767a2e38e4526412ec428d68cd3)
@@ -319,8 +319,15 @@
     uint16_t *symbol)
 {
-	uint16_t code = 0; /* Decoded bits */
-	size_t first = 0;  /* First code of the given length */
-	size_t index = 0;  /* Index of the first code of the given length
-	                      in the symbol table */
+	/* Decoded bits */
+	uint16_t code = 0;
+
+	/* First code of the given length */
+	size_t first = 0;
+
+	/*
+	 * Index of the first code of the given length
+	 * in the symbol table
+	 */
+	size_t index = 0;
 
 	size_t len;  /* Current number of bits in the code */
