From: H.J. Lu Date: Fri, 21 Aug 2015 15:32:36 +0000 (-0700) Subject: Fix a typo in linux lxstat.c X-Git-Tag: glibc-2.23~611 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e4ad5e722cec9a274cd84585d9c33f696e36f847;p=thirdparty%2Fglibc.git Fix a typo in linux lxstat.c * sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Fix a typo. --- diff --git a/ChangeLog b/ChangeLog index 8fc12f4c532..64ef2aebd2f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2015-08-21 H.J. Lu + + * sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Fix a typo. + 2015-08-21 H.J. Lu * sysdeps/unix/sysdep.h (INLINE_SYSCALL_RETURN): New. diff --git a/sysdeps/unix/sysv/linux/lxstat.c b/sysdeps/unix/sysv/linux/lxstat.c index ae3f33cb7fd..7404ecd40f8 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_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)