about summary refs log tree commit diff
path: root/src/misc/arch_prctl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc/arch_prctl.c')
-rw-r--r--src/misc/arch_prctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/misc/arch_prctl.c b/src/misc/arch_prctl.c
index 2868d668..a6ab2644 100644
--- a/src/misc/arch_prctl.c
+++ b/src/misc/arch_prctl.c
@@ -3,7 +3,7 @@
 #include "libc.h"
 int __arch_prctl(int code, unsigned long addr)
 {
-	return syscall(SYS_arch_prctl, code, addr);	
+	return syscall(SYS_arch_prctl, code, addr);
 }
 weak_alias(__arch_prctl, arch_prctl);
 #endif