Index: uspace/lib/c/arch/ia32/src/setjmp.S
===================================================================
--- uspace/lib/c/arch/ia32/src/setjmp.S	(revision 850235d404a93a3e011befe27ef139ef8e288759)
+++ uspace/lib/c/arch/ia32/src/setjmp.S	(revision 2d1195c0dd1b314c846280e600e9899f43e9c478)
@@ -35,23 +35,21 @@
 .type setjmp,@function
 setjmp:
-	movl 0(%esp),%eax	# save pc value into eax	
-	movl 4(%esp),%edx	# address of the jmp_buf structure to save context to 
-
-		# save registers to the jmp_buf structure
+	movl 0(%esp),%eax  # save pc value into eax
+	movl 4(%esp),%edx  # address of the jmp_buf structure to save context to
+	
+	# save registers to the jmp_buf structure
 	CONTEXT_SAVE_ARCH_CORE %edx %eax
-
-	xorl %eax,%eax		# set_jmp returns 0
+	
+	xorl %eax,%eax  # set_jmp returns 0
 	ret
 
 .type longjmp,@function
 longjmp:
-
-	movl 4(%esp), %ecx	# put address of jmp_buf into ecx
-	movl 8(%esp), %eax	# put return value into eax	
-
-		# restore registers from the jmp_buf structure
+	movl 4(%esp), %ecx  # put address of jmp_buf into ecx
+	movl 8(%esp), %eax  # put return value into eax
+	
+	# restore registers from the jmp_buf structure
 	CONTEXT_RESTORE_ARCH_CORE %ecx %edx
-
-	movl %edx,0(%esp)	# put saved pc on stack
+	
+	movl %edx,0(%esp)  # put saved pc on stack
 	ret
-
