diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2012-05-10 15:54:27 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-05-10 15:57:29 -0700 |
commit | 61f06bd3ba0a5c95ca7261cacb13025fa30f10f4 (patch) | |
tree | 5a6925d799e057a848b7b6c42a4d409a7b46d969 /sysdeps/mach/hurd/openat.c | |
parent | 918d4d716343a54ce97aefb13d20fa8f4e1d03de (diff) | |
download | glibc-61f06bd3ba0a5c95ca7261cacb13025fa30f10f4.tar.gz glibc-61f06bd3ba0a5c95ca7261cacb13025fa30f10f4.tar.xz glibc-61f06bd3ba0a5c95ca7261cacb13025fa30f10f4.zip |
Hurd: fix mode type for openat
Diffstat (limited to 'sysdeps/mach/hurd/openat.c')
-rw-r--r-- | sysdeps/mach/hurd/openat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/mach/hurd/openat.c b/sysdeps/mach/hurd/openat.c index 69d257c181..c6fcf49d8b 100644 --- a/sysdeps/mach/hurd/openat.c +++ b/sysdeps/mach/hurd/openat.c @@ -1,5 +1,5 @@ /* openat -- Open a file named relative to an open directory. Hurd version. - Copyright (C) 2006 Free Software Foundation, Inc. + Copyright (C) 2006-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -34,14 +34,14 @@ __openat (fd, file, oflag) const char *file; int oflag; { - int mode; + mode_t mode; io_t port; if (oflag & O_CREAT) { va_list arg; va_start (arg, oflag); - mode = va_arg (arg, int); + mode = va_arg (arg, mode_t); va_end (arg); } else |