Index: uspace/lib/c/arch/amd64/src/fibril.S
===================================================================
--- uspace/lib/c/arch/amd64/src/fibril.S	(revision c06994673347954891a57710998cf1e087a59e8b)
+++ uspace/lib/c/arch/amd64/src/fibril.S	(revision db71e2af5cdfe169de296e6f39b3e5eda7a966f6)
@@ -42,15 +42,14 @@
 	movq (%rsp), %rdx     # the caller's return %eip
 	
-	# In %edi is passed 1st argument
+	# in %edi is passed 1st argument
 	CONTEXT_SAVE_ARCH_CORE %rdi %rdx 
 	
-	# Save TLS
+	# save TLS
 	movq %fs:0, %rax
 	movq %rax, OFFSET_TLS(%rdi)
-		
-	xorl %eax, %eax		# context_save returns 1
+	
+	xorl %eax, %eax       # context_save returns 1
 	incl %eax
 	ret
-
 
 ## Restore current CPU context
@@ -64,10 +63,10 @@
 	
 	movq %rdx,(%rsp)
-
+	
 	# Set thread local storage
-	movq OFFSET_TLS(%rdi), %rdi   # Set arg1 to TLS addr
-	movl $1, %eax		# SYS_TLS_SET
+	movq OFFSET_TLS(%rdi), %rdi  # Set arg1 to TLS addr
+	movl $1, %eax                # SYS_TLS_SET
 	syscall
-
-	xorl %eax, %eax		# context_restore returns 0
+	
+	xorl %eax, %eax              # context_restore returns 0
 	ret
