瀏覽代碼

Made it compile again.

Peter Kjellerstedt 18 年之前
父節點
當前提交
967639a59c
共有 1 個文件被更改,包括 2 次插入3 次删除
  1. 2 3
      libc/sysdeps/linux/common/open.c

+ 2 - 3
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)