Index: uspace/app/blkdump/blkdump.c
===================================================================
--- uspace/app/blkdump/blkdump.c	(revision 5bd1ffba20254d14838dc460f66dd95a631e19c9)
+++ uspace/app/blkdump/blkdump.c	(revision 1a86c50774ee47210dbe00882e1be08f29c4c5cd)
@@ -202,5 +202,5 @@
 	}
 	
-	// Print hexadecimal values
+	/* Print hexadecimal values */
 	for (pos = 0; pos < length; pos++) {
 		if (pos == length/2) {
@@ -210,5 +210,5 @@
 	}
 	
-	// pad with spaces if we have less than 16 bytes
+	/* Pad with spaces if we have less than 16 bytes */
 	for (pos = length; pos < bytes_per_row; pos++) {
 		if (pos == length/2) {
@@ -218,5 +218,5 @@
 	}
 	
-	// Print printable characters
+	/* Print printable characters */
 	for (pos = 0; pos < length; pos++) {
 		if (pos == length/2) {
Index: uspace/app/ext2info/ext2info.c
===================================================================
--- uspace/app/ext2info/ext2info.c	(revision 5bd1ffba20254d14838dc460f66dd95a631e19c9)
+++ uspace/app/ext2info/ext2info.c	(revision 1a86c50774ee47210dbe00882e1be08f29c4c5cd)
@@ -95,5 +95,5 @@
 	}
 	
-	// Skip program name
+	/* Skip program name */
 	--argc; ++argv;
 	
@@ -171,5 +171,5 @@
 	assert(argc == 1);
 	
-	// Display common things by default
+	/* Display common things by default */
 	if ((arg_flags & ARG_ALL) == 0) {
 		arg_flags = ARG_COMMON;
Index: uspace/app/testread/testread.c
===================================================================
--- uspace/app/testread/testread.c	(revision 5bd1ffba20254d14838dc460f66dd95a631e19c9)
+++ uspace/app/testread/testread.c	(revision 1a86c50774ee47210dbe00882e1be08f29c4c5cd)
@@ -84,5 +84,5 @@
 	}
 	
-	// Skip program name
+	/* Skip program name */
 	--argc; ++argv;
 	
Index: uspace/srv/fs/ext2fs/ext2fs_ops.c
===================================================================
--- uspace/srv/fs/ext2fs/ext2fs_ops.c	(revision 5bd1ffba20254d14838dc460f66dd95a631e19c9)
+++ uspace/srv/fs/ext2fs/ext2fs_ops.c	(revision 1a86c50774ee47210dbe00882e1be08f29c4c5cd)
@@ -245,6 +245,7 @@
 	}
 
-	// Find length of component in bytes
-	// TODO: check for library function call that does this
+	/* Find length of component in bytes
+	 * TODO: check for library function call that does this
+	 */
 	component_size = 0;
 	while (*(component+component_size) != 0) {
@@ -253,5 +254,5 @@
 	
 	while (it.current != NULL) {
-		// ignore empty directory entries
+		/* ignore empty directory entries */
 		if (it.current->inode != 0) {
 			name_size = ext2_directory_entry_ll_get_name_length(fs->superblock,
@@ -481,5 +482,5 @@
 	}
 	
-	// Find a non-empty directory entry
+	/* Find a non-empty directory entry */
 	while (it.current != NULL) {
 		if (it.current->inode != 0) {
@@ -717,5 +718,5 @@
 	}
 	
-	// Remove the instance from list
+	/* Remove the instance from the list */
 	fibril_mutex_lock(&instance_list_mutex);
 	list_remove(&inst->link);
@@ -787,5 +788,5 @@
 	}
 	else {
-		// Other inode types not supported
+		/* Other inode types not supported */
 		async_answer_0(callid, ENOTSUP);
 		async_answer_0(rid, ENOTSUP);
@@ -828,9 +829,10 @@
 	}
 	
-	// Find the index we want to read
-	// Note that we need to iterate and count as
-	// the underlying structure is a linked list
-	// Moreover, we want to skip . and .. entries
-	// as these are not used in HelenOS
+	/* Find the index we want to read
+	 * Note that we need to iterate and count as
+	 * the underlying structure is a linked list
+	 * Moreover, we want to skip . and .. entries
+	 * as these are not used in HelenOS
+	 */
 	cur = 0;
 	while (it.current != NULL) {
@@ -842,14 +844,15 @@
 			inst->filesystem->superblock, it.current);
 		
-		// skip . and ..
+		/* skip . and .. */
 		if (ext2fs_is_dots(&it.current->name, name_size)) {
 			goto skip;
 		}
 		
-		// Is this the dir entry we want to read?
+		/* Is this the dir entry we want to read? */
 		if (cur == pos) {
-			// The on-disk entry does not contain \0 at the end
-			// end of entry name, so we copy it to new buffer
-			// and add the \0 at the end
+			/* The on-disk entry does not contain \0 at the end
+			 * end of entry name, so we copy it to new buffer
+			 * and add the \0 at the end
+			 */
 			buf = malloc(name_size+1);
 			if (buf == NULL) {
@@ -910,5 +913,5 @@
 	
 	if (pos >= file_size) {
-		// Read 0 bytes successfully
+		/* Read 0 bytes successfully */
 		async_data_read_finalize(callid, NULL, 0);
 		async_answer_1(rid, EOK, 0);
@@ -916,5 +919,5 @@
 	}
 	
-	// For now, we only read data from one block at a time
+	/* For now, we only read data from one block at a time */
 	block_size = ext2_superblock_get_block_size(inst->filesystem->superblock);
 	file_block = pos / block_size;
@@ -922,9 +925,10 @@
 	bytes = min(block_size - offset_in_block, size);
 	
-	// Handle end of file
+	/* Handle end of file */
 	if (pos + bytes > file_size) {
 		bytes = file_size - pos;
 	}
 	
+	/* Get the real block number */
 	rc = ext2_filesystem_get_inode_data_block_index(inst->filesystem,
 		inode_ref->inode, file_block, &fs_block);
@@ -935,8 +939,9 @@
 	}
 	
-	// Check for sparse file
-	// If ext2_filesystem_get_inode_data_block_index returned
-	// fs_block == 0, it means that the given block is not allocated for the 
-	// file and we need to return a buffer of zeros
+	/* Check for sparse file
+	 * If ext2_filesystem_get_inode_data_block_index returned
+	 * fs_block == 0, it means that the given block is not allocated for the 
+	 * file and we need to return a buffer of zeros
+	 */
 	if (fs_block == 0) {
 		buffer = malloc(bytes);
@@ -957,5 +962,5 @@
 	}
 	
-	// Usual case - we need to read a block from device
+	/* Usual case - we need to read a block from device */
 	rc = block_get(&block, inst->devmap_handle, fs_block, BLOCK_FLAGS_NONE);
 	if (rc != EOK) {
