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 +++--- src/linux/setns.c | 2 +- src/thread/x86_64/__set_thread_area.s | 8 ++++---- src/unistd/acct.c | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) (limited to 'src') 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); } diff --git a/src/linux/setns.c b/src/linux/setns.c index af3eb092..7029b748 100644 --- a/src/linux/setns.c +++ b/src/linux/setns.c @@ -5,5 +5,5 @@ int setns(int fd, int nstype) { - return syscall(SYS_setns, fd, nstype); + return syscall(SYS_setns, fd, nstype); } diff --git a/src/thread/x86_64/__set_thread_area.s b/src/thread/x86_64/__set_thread_area.s index cc538e52..f3ff4f61 100644 --- a/src/thread/x86_64/__set_thread_area.s +++ b/src/thread/x86_64/__set_thread_area.s @@ -3,8 +3,8 @@ .global __set_thread_area .type __set_thread_area,@function __set_thread_area: - mov %rdi,%rsi /* shift for syscall */ - movl $0x1002,%edi /* SET_FS register */ - movl $158,%eax /* set fs segment to */ - syscall /* arch_prctl(SET_FS, arg)*/ + mov %rdi,%rsi /* shift for syscall */ + movl $0x1002,%edi /* SET_FS register */ + movl $158,%eax /* set fs segment to */ + syscall /* arch_prctl(SET_FS, arg)*/ ret diff --git a/src/unistd/acct.c b/src/unistd/acct.c index 93847127..f6f25a8a 100644 --- a/src/unistd/acct.c +++ b/src/unistd/acct.c @@ -5,5 +5,5 @@ int acct(const char *filename) { - return syscall(SYS_acct, filename); + return syscall(SYS_acct, filename); } -- cgit v1.2.1