diff options
author | Roland McGrath <roland@hack.frob.com> | 2015-07-21 15:48:56 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2015-07-21 15:48:56 -0700 |
commit | 0b24551cf3a62e0dbbe7577f63b43969f8dfc1fb (patch) | |
tree | cd86e14224232e0a6bacf626979e7e5c38c1b551 /sysdeps/nacl/xstat.c | |
parent | 7493ab257e4d50753dfc46a342b00d0759081115 (diff) | |
download | glibc-0b24551cf3a62e0dbbe7577f63b43969f8dfc1fb.tar.gz glibc-0b24551cf3a62e0dbbe7577f63b43969f8dfc1fb.tar.xz glibc-0b24551cf3a62e0dbbe7577f63b43969f8dfc1fb.zip |
NaCl: Use only nacl_irt_dev_filename, never nacl_irt_filename.
Diffstat (limited to 'sysdeps/nacl/xstat.c')
-rw-r--r-- | sysdeps/nacl/xstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/nacl/xstat.c b/sysdeps/nacl/xstat.c index 022cf0294f..8180c9362c 100644 --- a/sysdeps/nacl/xstat.c +++ b/sysdeps/nacl/xstat.c @@ -35,7 +35,7 @@ int __xstat (int vers, const char *file, struct stat *buf) { nacl_abi_stat_t abi_buf; - return NACL_CALL (__nacl_irt_filename.stat (file, &abi_buf), + return NACL_CALL (__nacl_irt_dev_filename.stat (file, &abi_buf), __xstat_conv (vers, &abi_buf, buf)); } hidden_def (__xstat) |