Index: uspace/app/bdsh/input.c
===================================================================
--- uspace/app/bdsh/input.c	(revision 02c6dcc803242797ced1b0e27dca419801279b57)
+++ uspace/app/bdsh/input.c	(revision d1744fd7756b14efee2426969f0f49ee04c302c7)
@@ -187,7 +187,7 @@
 		unsigned int cmd_replace_index = cmd_token_start;
 		for (i = 0; i < tokens_length; i++) {
-			if(i == cmd_replace_index) {
+			if (i == cmd_replace_index) {
 				//if there is a pipe symbol than cmd_token_start will point at the SPACE after the pipe symbol
-				if(tokens[i].type == TOKTYPE_SPACE) {
+				if (tokens[i].type == TOKTYPE_SPACE) {
 					cmd_replace_index++;
 					str_append(usr->line, input_length, tokens[i].text);
@@ -196,5 +196,5 @@
 
 				str_append(usr->line, input_length, data->value);
-			}else {
+			} else {
 				str_append(usr->line, input_length, tokens[i].text);
 			}
