summaryrefslogtreecommitdiff
path: root/libc
diff options
context:
space:
mode:
authorMiles Bader <miles@lsi.nec.co.jp>2003-05-08 02:36:12 +0000
committerMiles Bader <miles@lsi.nec.co.jp>2003-05-08 02:36:12 +0000
commitc5ace0d2c9340e3fc72b880ce9364a529b1226f3 (patch)
treebf8e1027ffb1195246bdd3974cf73fb4ed482864 /libc
parent72cf601ed08e791cf532fdf41b946161d302f629 (diff)
(__libc_open): Fix wacky indentation.
Diffstat (limited to 'libc')
-rw-r--r--libc/sysdeps/linux/common/syscalls.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libc/sysdeps/linux/common/syscalls.c b/libc/sysdeps/linux/common/syscalls.c
index 74b2603a9..8042d0fc0 100644
--- a/libc/sysdeps/linux/common/syscalls.c
+++ b/libc/sysdeps/linux/common/syscalls.c
@@ -85,12 +85,12 @@ static inline
_syscall3(int, __syscall_open, const char *, fn, int, flags, __kernel_mode_t, mode);
int __libc_open (const char * fn, int flags, ...)
{
- va_list ap;
- mode_t mode;
- va_start(ap, flags);
- mode = va_arg(ap, mode_t);
- va_end(ap);
- return __syscall_open(fn, flags, mode);
+ va_list ap;
+ mode_t mode;
+ va_start(ap, flags);
+ mode = va_arg(ap, mode_t);
+ va_end(ap);
+ return __syscall_open(fn, flags, mode);
}
weak_alias(__libc_open, open)