diff options
author | Yury Norov <ynorov@caviumnetworks.com> | 2016-10-24 14:36:53 -0700 |
---|---|---|
committer | Steve Ellcey <sellcey@caviumnetworks.com> | 2016-10-24 14:36:53 -0700 |
commit | 20973cf442dfbf94dc5b92cd78c1b91136db5266 (patch) | |
tree | ed4ec743c9190ae994561be641334a2873bf7e85 /sysdeps/unix/sysv/linux/i386/fxstat.c | |
parent | 2152cf7edadb7673ea1e216de6fdfa658ec4ac1f (diff) | |
download | glibc-20973cf442dfbf94dc5b92cd78c1b91136db5266.tar.gz glibc-20973cf442dfbf94dc5b92cd78c1b91136db5266.tar.xz glibc-20973cf442dfbf94dc5b92cd78c1b91136db5266.zip |
* sysdeps/unix/sysv/linux/fxstat.c: Remove useless cast.
* sysdeps/unix/sysv/linux/lxstat.c: Likewise. * sysdeps/unix/sysv/linux/xstat.c: Likewise. * sysdeps/unix/sysv/linux/i386/fxstat.c: Likewise. * sysdeps/unix/sysv/linux/i386/lxstat.c: Likewise. * sysdeps/unix/sysv/linux/i386/xstat.c: Likewise.
Diffstat (limited to 'sysdeps/unix/sysv/linux/i386/fxstat.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/i386/fxstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/fxstat.c b/sysdeps/unix/sysv/linux/i386/fxstat.c index c1a7613ca7..b21dced00a 100644 --- a/sysdeps/unix/sysv/linux/i386/fxstat.c +++ b/sysdeps/unix/sysv/linux/i386/fxstat.c @@ -37,7 +37,7 @@ __fxstat (int vers, int fd, struct stat *buf) int result; if (vers == _STAT_VER_KERNEL) - return INLINE_SYSCALL (fstat, 2, fd, (struct kernel_stat *) buf); + return INLINE_SYSCALL (fstat, 2, fd, buf); { struct stat64 buf64; |