Index: uspace/lib/c/generic/elf/elf_mod.c
===================================================================
--- uspace/lib/c/generic/elf/elf_mod.c	(revision 57d44dd9c17ddb49818d70775e58b45ccd3511fd)
+++ uspace/lib/c/generic/elf/elf_mod.c	(revision 2ee0e4a1310e3fe2e6e7d1f090bbe5a5e0aa5bb3)
@@ -273,5 +273,5 @@
 		// FIXME: This actually won't work, because the text segment is
 		// not loaded yet.
-		#if 0
+#if 0
 		if (elf->info->interp[entry->p_filesz - 1] != '\0') {
 			DPRINTF("Unterminated ELF interp string.\n");
@@ -279,5 +279,5 @@
 		}
 		DPRINTF("interpreter: \"%s\"\n", elf->info->interp);
-		#endif
+#endif
 		break;
 	case PT_DYNAMIC:
@@ -286,5 +286,5 @@
 		    (void *)((uint8_t *)entry->p_vaddr + elf->bias);
 		DPRINTF("dynamic section found at %p\n",
-			(void *)elf->info->dynamic);
+		    (void *)elf->info->dynamic);
 		break;
 	case 0x70000000:
@@ -334,5 +334,5 @@
 
 	DPRINTF("Load segment at addr %p, size 0x%zx\n", (void *) seg_addr,
-		entry->p_memsz);
+	    entry->p_memsz);
 
 	if (entry->p_align > 1) {
@@ -394,5 +394,6 @@
 	 * need to set the right access mode and ensure SMC coherence.
 	 */
-	if ((elf->flags & ELDF_RW) != 0) return EE_OK;
+	if ((elf->flags & ELDF_RW) != 0)
+		return EE_OK;
 
 //	printf("set area flags to %d\n", flags);
