Index: uspace/app/bdsh/cmds/modules/alias/alias.c
===================================================================
--- uspace/app/bdsh/cmds/modules/alias/alias.c	(revision a8c09f91ec5d05635fe305ccf7411521e8734a45)
+++ uspace/app/bdsh/cmds/modules/alias/alias.c	(revision 506cbf0ee012940ec0f6e0f0de67f2a89726e75d)
@@ -70,10 +70,10 @@
 
 	if (alias_link != NULL) {
-		//update existing value
+		/* update existing value */
 		alias_t *data = odict_get_instance(alias_link, alias_t, odict);
 		free(data->value);
 		data->value = str_dup(value);
 	} else {
-		//add new value
+		/* add new value */
 		alias_t *data = (alias_t *)calloc(1, sizeof(alias_t));
 		data->name = str_dup(name);
Index: uspace/app/bdsh/input.c
===================================================================
--- uspace/app/bdsh/input.c	(revision a8c09f91ec5d05635fe305ccf7411521e8734a45)
+++ uspace/app/bdsh/input.c	(revision 506cbf0ee012940ec0f6e0f0de67f2a89726e75d)
@@ -194,5 +194,5 @@
 	if (alias_link != NULL) {
 		alias_t *data = odict_get_instance(alias_link, alias_t, odict);
-		//check if the alias already has been resolved once
+		/* check if the alias already has been resolved once */
 		if (!find_alias_hup(data, alias_hups)) {
 			alias_hup_t *hup = (alias_hup_t *)calloc(1, sizeof(hup));
@@ -208,5 +208,5 @@
 			for (i = 0; i < tokens_length; i++) {
 				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 there is a pipe symbol than cmd_token_start will point at the SPACE after the pipe symbol */
 					if (tokens[i].type == TOKTYPE_SPACE) {
 						cmd_replace_index++;
@@ -221,5 +221,5 @@
 			}
 
-			//reprocess input after string replace
+			/* reprocess input after string replace */
 			rc = process_input_nohup(usr, alias_hups);
 			usr->line = oldLine;
