diff options
author | David S. Miller <davem@davemloft.net> | 2012-03-13 00:43:20 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-03-13 00:43:20 -0700 |
commit | 5f0bdb18942a9749303ebb17ac8d080872557974 (patch) | |
tree | 8d75407edebd3a52ed59a1184f9450f2b99d8cf4 /sysdeps/unix/sysv/linux/openat.c | |
parent | 09a3453f637006538b45f9da69d1895d26a15473 (diff) | |
download | glibc-5f0bdb18942a9749303ebb17ac8d080872557974.tar.gz glibc-5f0bdb18942a9749303ebb17ac8d080872557974.tar.xz glibc-5f0bdb18942a9749303ebb17ac8d080872557974.zip |
Fix warning in Linux openat implementation when __ASSUME_ATFCTS is set.
* sysdeps/unix/sysv/linux/openat.c (OPENAT_NOT_CANCEL): Declare syscall 'err' in the ifdef scope in which it is actually used.
Diffstat (limited to 'sysdeps/unix/sysv/linux/openat.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/openat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/openat.c b/sysdeps/unix/sysv/linux/openat.c index 11e673fe61..62ea1e3c97 100644 --- a/sysdeps/unix/sysv/linux/openat.c +++ b/sysdeps/unix/sysv/linux/openat.c @@ -84,7 +84,6 @@ OPENAT_NOT_CANCEL (fd, file, oflag, mode) oflag |= MORE_OFLAGS; #endif - INTERNAL_SYSCALL_DECL (err); int res; #ifdef __NR_openat @@ -104,6 +103,7 @@ OPENAT_NOT_CANCEL (fd, file, oflag, mode) #endif #ifndef __ASSUME_ATFCTS + INTERNAL_SYSCALL_DECL (err); char *buf = NULL; if (fd != AT_FDCWD && file[0] != '/') |