mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-23 11:20:07 +00:00
Fix a typo in linux lxstat.c
* sysdeps/unix/sysv/linux/lxstat.c (__lxstat): Fix a typo.
This commit is contained in:
parent
0c5b8b5941
commit
e4ad5e722c
@ -1,3 +1,7 @@
|
|||||||
|
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>
|
2015-08-21 H.J. Lu <hongjiu.lu@intel.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysdep.h (INLINE_SYSCALL_RETURN): New.
|
* sysdeps/unix/sysdep.h (INLINE_SYSCALL_RETURN): New.
|
||||||
|
@ -35,7 +35,7 @@ int
|
|||||||
__lxstat (int vers, const char *name, struct stat *buf)
|
__lxstat (int vers, const char *name, struct stat *buf)
|
||||||
{
|
{
|
||||||
if (vers == _STAT_VER_KERNEL)
|
if (vers == _STAT_VER_KERNEL)
|
||||||
return INLINE_SYSCALL_ERROR_RETURN (lstat, 2, int, name,
|
return INLINE_SYSCALL_RETURN (lstat, 2, int, name,
|
||||||
(struct kernel_stat *) buf);
|
(struct kernel_stat *) buf);
|
||||||
|
|
||||||
#ifdef STAT_IS_KERNEL_STAT
|
#ifdef STAT_IS_KERNEL_STAT
|
||||||
|
Loading…
Reference in New Issue
Block a user