Browse Source

(__libc_open): Fix wacky indentation.

Miles Bader 22 năm trước cách đây
mục cha
commit
c5ace0d2c9
1 tập tin đã thay đổi với 6 bổ sung6 xóa
  1. 6 6
      libc/sysdeps/linux/common/syscalls.c

+ 6 - 6
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)