Fix a typo in linux lxstat.c
authorH.J. Lu <hjl.tools@gmail.com>
Fri, 21 Aug 2015 15:32:36 +0000 (08:32 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Fri, 21 Aug 2015 15:32:36 +0000 (08:32 -0700)
* sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Fix a typo.

ChangeLog
sysdeps/unix/sysv/linux/lxstat.c

index 8fc12f4..64ef2ae 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2015-08-21  H.J. Lu  <hongjiu.lu@intel.com>
 
+       * sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Fix a typo.
+
+2015-08-21  H.J. Lu  <hongjiu.lu@intel.com>
+
        * sysdeps/unix/sysdep.h (INLINE_SYSCALL_RETURN): New.
        (INLINE_SYSCALL_ERROR_RETURN): Likewise.
        * sysdeps/unix/sysv/linux/adjtime.c (ADJTIME): Use
index ae3f33c..7404ecd 100644 (file)
@@ -35,8 +35,8 @@ int
 __lxstat (int vers, const char *name, struct stat *buf)
 {
   if (vers == _STAT_VER_KERNEL)
-    return INLINE_SYSCALL_ERROR_RETURN (lstat, 2, int, name,
-                                       (struct kernel_stat *) buf);
+    return INLINE_SYSCALL_RETURN (lstat, 2, int, name,
+                                 (struct kernel_stat *) buf);
 
 #ifdef STAT_IS_KERNEL_STAT
   return INLINE_SYSCALL_ERROR_RETURN (-EINVAL, int, -1)