Index: uspace/app/bdsh/cmds/modules/printf/TODO
===================================================================
--- uspace/app/bdsh/cmds/modules/printf/TODO	(revision 9d58539899ea3bf36d74e87b391c0a986e338e26)
+++ uspace/app/bdsh/cmds/modules/printf/TODO	(revision df3f85f587bec2d6d4f0bafd93d5020c1af44c68)
@@ -11,2 +11,3 @@
  * Add width/precision options for number printings
  * Add more format flags (%f %b ...)
+ 
Index: uspace/app/bdsh/cmds/modules/printf/printf.c
===================================================================
--- uspace/app/bdsh/cmds/modules/printf/printf.c	(revision 9d58539899ea3bf36d74e87b391c0a986e338e26)
+++ uspace/app/bdsh/cmds/modules/printf/printf.c	(revision df3f85f587bec2d6d4f0bafd93d5020c1af44c68)
@@ -47,9 +47,9 @@
 		help_cmd_printf(HELP_SHORT);
 		printf(
-		"Usage:  %s FORMAT [ARGS ...] \n"
-		"Prints ARGS according to FORMAT. Number of expected arguments in\n"
-		"FORMAT must be equals to the number of ARGS. Currently supported\n"
-		"format flags are:\n",
-		cmdname);
+		    "Usage:  %s FORMAT [ARGS ...] \n"
+		    "Prints ARGS according to FORMAT. Number of expected arguments in\n"
+		    "FORMAT must be equals to the number of ARGS. Currently supported\n"
+		    "format flags are:\n",
+		    cmdname);
 	}
 
@@ -172,6 +172,7 @@
 			break;
 
-		emit:		putchar(ch);
-				esc_flag = false;
+		emit:
+			putchar(ch);
+			esc_flag = false;
 		}
 	}	
