Index: kernel/generic/src/printf/vsnprintf.c
===================================================================
--- kernel/generic/src/printf/vsnprintf.c	(revision 3bacee1839e6f355100ab4ea86bb211e9ecf19ed)
+++ kernel/generic/src/printf/vsnprintf.c	(revision 7c3fb9bd77e4d2f6c10517a052e567f176fa91ee)
@@ -70,5 +70,6 @@
 
 	if (left == 1) {
-		/* We have only one free byte left in buffer
+		/*
+		 * We have only one free byte left in buffer
 		 * -> store trailing zero
 		 */
@@ -79,5 +80,6 @@
 
 	if (left <= size) {
-		/* We do not have enough space for the whole string
+		/*
+		 * We do not have enough space for the whole string
 		 * with the trailing zero => print only a part
 		 * of string
@@ -92,5 +94,6 @@
 		}
 
-		/* Put trailing zero at end, but not count it
+		/*
+		 * Put trailing zero at end, but not count it
 		 * into data->len so it could be rewritten next time
 		 */
@@ -104,5 +107,6 @@
 	data->len += size;
 
-	/* Put trailing zero at end, but not count it
+	/*
+	 * Put trailing zero at end, but not count it
 	 * into data->len so it could be rewritten next time
 	 */
@@ -140,5 +144,6 @@
 
 		if (left == 1) {
-			/* We have only one free byte left in buffer
+			/*
+			 * We have only one free byte left in buffer
 			 * -> store trailing zero
 			 */
@@ -154,5 +159,6 @@
 	}
 
-	/* Put trailing zero at end, but not count it
+	/*
+	 * Put trailing zero at end, but not count it
 	 * into data->len so it could be rewritten next time
 	 */
