Index: uspace/lib/c/generic/io/printf_core.c
===================================================================
--- uspace/lib/c/generic/io/printf_core.c	(revision 7c3fb9bd77e4d2f6c10517a052e567f176fa91ee)
+++ uspace/lib/c/generic/io/printf_core.c	(revision 86b70c6fa1a6e0fc138e6294cb6cfe8bda4535d3)
@@ -1499,7 +1499,7 @@
 
 			switch (uc) {
-			/*
-			 * String and character conversions.
-			 */
+				/*
+				 * String and character conversions.
+				 */
 			case 's':
 				precision = max(0,  precision);
@@ -1533,7 +1533,7 @@
 				continue;
 
-			/*
-			 * Floating point values
-			 */
+				/*
+				 * Floating point values
+				 */
 			case 'G':
 			case 'g':
@@ -1554,7 +1554,7 @@
 				continue;
 
-			/*
-			 * Integer values
-			 */
+				/*
+				 * Integer values
+				 */
 			case 'P':
 				/* Pointer */
@@ -1586,12 +1586,12 @@
 				break;
 
-			/* Percentile itself */
 			case '%':
+				/* Percentile itself */
 				j = i;
 				continue;
 
-			/*
-			 * Bad formatting.
-			 */
+				/*
+				 * Bad formatting.
+				 */
 			default:
 				/*
