about summary refs log tree commit diff
path: root/src/linux/dup3.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/linux/dup3.c')
-rw-r--r--src/linux/dup3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/linux/dup3.c b/src/linux/dup3.c
index e201ef01..18f6fcce 100644
--- a/src/linux/dup3.c
+++ b/src/linux/dup3.c
@@ -4,7 +4,7 @@
 #include "syscall.h"
 
 int dup3(int old, int new, int flags) {
-        int r;
-        while ((r=__syscall(SYS_dup3, old, new, flags))==-EBUSY);
-        return __syscall_ret(r);
+	int r;
+	while ((r=__syscall(SYS_dup3, old, new, flags))==-EBUSY);
+	return __syscall_ret(r);
 }