about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/lxstat.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2015-08-21 09:57:02 -0700
committerH.J. Lu <hjl.tools@gmail.com>2015-08-21 09:57:02 -0700
commit8c7c251746ce41779637c83e3b35639517f728d5 (patch)
tree3c147bf3d4f07169bc0812858d0c108773e575cd /sysdeps/unix/sysv/linux/lxstat.c
parente4ad5e722cec9a274cd84585d9c33f696e36f847 (diff)
downloadglibc-8c7c251746ce41779637c83e3b35639517f728d5.tar.gz
glibc-8c7c251746ce41779637c83e3b35639517f728d5.tar.xz
glibc-8c7c251746ce41779637c83e3b35639517f728d5.zip
Revert "Fix a typo in linux lxstat.c"
This reverts commit e4ad5e722cec9a274cd84585d9c33f696e36f847.
Diffstat (limited to 'sysdeps/unix/sysv/linux/lxstat.c')
-rw-r--r--sysdeps/unix/sysv/linux/lxstat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/lxstat.c b/sysdeps/unix/sysv/linux/lxstat.c
index 7404ecd40f..ae3f33cb7f 100644
--- a/sysdeps/unix/sysv/linux/lxstat.c
+++ b/sysdeps/unix/sysv/linux/lxstat.c
@@ -35,8 +35,8 @@ int
 __lxstat (int vers, const char *name, struct stat *buf)
 {
   if (vers == _STAT_VER_KERNEL)
-    return INLINE_SYSCALL_RETURN (lstat, 2, int, name,
-				  (struct kernel_stat *) buf);
+    return INLINE_SYSCALL_ERROR_RETURN (lstat, 2, int, name,
+					(struct kernel_stat *) buf);
 
 #ifdef STAT_IS_KERNEL_STAT
   return INLINE_SYSCALL_ERROR_RETURN (-EINVAL, int, -1)