1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

Fix a typo in linux lxstat.c

* sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Fix a typo.
This commit is contained in:
H.J. Lu
2015-08-21 08:32:36 -07:00
parent 0c5b8b5941
commit e4ad5e722c
2 changed files with 6 additions and 2 deletions

View 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)