about summary refs log tree commit diff
path: root/sysdeps/nacl/xstat.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2015-07-21 15:48:56 -0700
committerRoland McGrath <roland@hack.frob.com>2015-07-21 15:48:56 -0700
commit0b24551cf3a62e0dbbe7577f63b43969f8dfc1fb (patch)
treecd86e14224232e0a6bacf626979e7e5c38c1b551 /sysdeps/nacl/xstat.c
parent7493ab257e4d50753dfc46a342b00d0759081115 (diff)
downloadglibc-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.c2
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)