From 967639a59cfbcdecc1a93d6e28a77fdd88e893cf Mon Sep 17 00:00:00 2001 From: Peter Kjellerstedt Date: Thu, 31 Aug 2006 11:39:36 +0000 Subject: Made it compile again. --- libc/sysdeps/linux/common/open.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'libc') diff --git a/libc/sysdeps/linux/common/open.c b/libc/sysdeps/linux/common/open.c index 1a514e62d..eb0350785 100644 --- a/libc/sysdeps/linux/common/open.c +++ b/libc/sysdeps/linux/common/open.c @@ -26,15 +26,14 @@ int __libc_open(const char *file, int oflag, ...) { mode_t mode = 0; - if (oflag & O_CREAT) - { + if (oflag & O_CREAT) { va_list arg; va_start (arg, oflag); mode = va_arg (arg, mode_t); va_end (arg); } - return __syscall_open(file, flags, mode); + return __syscall_open(file, oflag, mode); } libc_hidden_def(__libc_open) -- cgit v1.2.3