Index: uspace/lib/c/arch/ia32/src/setjmp.S
===================================================================
--- uspace/lib/c/arch/ia32/src/setjmp.S	(revision 2d1195c0dd1b314c846280e600e9899f43e9c478)
+++ uspace/lib/c/arch/ia32/src/setjmp.S	(revision 69b264a9735df226a05998fb3c1faab281862562)
@@ -35,11 +35,11 @@
 .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
+	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
 
@@ -52,4 +52,4 @@
 	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
