diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-09-29 01:14:07 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-09-29 01:14:07 -0400 |
commit | c983e6415abdc30893b2fe359a334033c59ec621 (patch) | |
tree | 324eaf2393680b4a3aa819c847249206af8393e8 /src/linux/dup3.c | |
parent | 8c0a3d9e5c169fc9d0f246ab59362b658b029ad7 (diff) | |
download | musl-c983e6415abdc30893b2fe359a334033c59ec621.tar.gz musl-c983e6415abdc30893b2fe359a334033c59ec621.tar.xz musl-c983e6415abdc30893b2fe359a334033c59ec621.zip |
fix some indention-with-spaces that crept in
Diffstat (limited to 'src/linux/dup3.c')
-rw-r--r-- | src/linux/dup3.c | 6 |
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); } |