Index: uspace/app/bdsh/cmds/builtins/batch/batch.c
===================================================================
--- uspace/app/bdsh/cmds/builtins/batch/batch.c	(revision af604092e35e8e60ad875a2e327638358cf3caf1)
+++ uspace/app/bdsh/cmds/builtins/batch/batch.c	(revision eb748a07badfc0c0a45c245ac989bd41eb3ca16a)
@@ -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 af604092e35e8e60ad875a2e327638358cf3caf1)
+++ uspace/app/bdsh/cmds/modules/printf/printf.c	(revision eb748a07badfc0c0a45c245ac989bd41eb3ca16a)
@@ -127,5 +127,7 @@
 
 	/* Count the arguments */
-	for (argc = 0; argv[argc] != NULL; argc ++);
+	argc = 0;
+	while (argv[argc] != NULL)
+		argc++;
 
 	if (argc < 2) {
