about summary refs log tree commit diff
path: root/src/thread
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread')
-rw-r--r--src/thread/x86_64/__set_thread_area.s8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/thread/x86_64/__set_thread_area.s b/src/thread/x86_64/__set_thread_area.s
index cc538e52..f3ff4f61 100644
--- a/src/thread/x86_64/__set_thread_area.s
+++ b/src/thread/x86_64/__set_thread_area.s
@@ -3,8 +3,8 @@
 .global __set_thread_area
 .type __set_thread_area,@function
 __set_thread_area:
-        mov %rdi,%rsi           /* shift for syscall */
-        movl $0x1002,%edi       /* SET_FS register */
-        movl $158,%eax          /* set fs segment to */
-        syscall                 /* arch_prctl(SET_FS, arg)*/
+	mov %rdi,%rsi           /* shift for syscall */
+	movl $0x1002,%edi       /* SET_FS register */
+	movl $158,%eax          /* set fs segment to */
+	syscall                 /* arch_prctl(SET_FS, arg)*/
 	ret