Index: uspace/app/bdsh/cmds/modules/help/help.c
===================================================================
--- uspace/app/bdsh/cmds/modules/help/help.c	(revision 25c1b2cfa59c18596ad80c56082194eccfe10c52)
+++ uspace/app/bdsh/cmds/modules/help/help.c	(revision e52b4b59c1061c3dd893ff39ca793858bbafd080)
@@ -98,5 +98,4 @@
 	builtin_t *cmd;
 	module_t *mod;
-	unsigned int i;
 
 	printf("\n  Bdsh built-in commands:\n");
@@ -104,5 +103,5 @@
 
 	/* First, show a list of built in commands that are available in this mode */
-	for (cmd = builtins; cmd->name != NULL; cmd++, i++) {
+	for (cmd = builtins; cmd->name != NULL; cmd++) {
 			if (is_builtin_alias(cmd->name))
 				printf("   %-16s\tAlias for `%s'\n", cmd->name,
@@ -112,8 +111,6 @@
 	}
 
-	i = 0;
-
 	/* Now, show a list of module commands that are available in this mode */
-	for (mod = modules; mod->name != NULL; mod++, i++) {
+	for (mod = modules; mod->name != NULL; mod++) {
 			if (is_module_alias(mod->name))
 				printf("   %-16s\tAlias for `%s'\n", mod->name,
