fix some indention-with-spaces that crept in
[musl] / src / linux / dup3.c
index e201ef0..18f6fcc 100644 (file)
@@ -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);
 }