Index: uspace/app/bdsh/cmds/builtins/batch/batch.c
===================================================================
--- uspace/app/bdsh/cmds/builtins/batch/batch.c	(revision 41bbab62642e447878bb09ac696779f25d666d92)
+++ uspace/app/bdsh/cmds/builtins/batch/batch.c	(revision fb08c470e2d36513bc2233dcd370c9400e2d42a1)
@@ -74,5 +74,7 @@
 
 	/* Count the arguments */
-	for (argc = 0; argv[argc] != NULL; argc ++);
+	argc = 0;
+	while (argv[argc] != NULL)
+		argc++;
 
 	if (argc < 2) {
Index: uspace/app/bdsh/cmds/modules/printf/printf.c
===================================================================
--- uspace/app/bdsh/cmds/modules/printf/printf.c	(revision 41bbab62642e447878bb09ac696779f25d666d92)
+++ uspace/app/bdsh/cmds/modules/printf/printf.c	(revision fb08c470e2d36513bc2233dcd370c9400e2d42a1)
@@ -127,5 +127,7 @@
 
 	/* Count the arguments */
-	for (argc = 0; argv[argc] != NULL; argc ++);
+	argc = 0;
+	while (argv[argc] != NULL)
+		argc++;
 
 	if (argc < 2) {
