From c983e6415abdc30893b2fe359a334033c59ec621 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 29 Sep 2012 01:14:07 -0400 Subject: fix some indention-with-spaces that crept in --- src/linux/dup3.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/linux/dup3.c') 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); } -- cgit v1.2.1