| Index: sysdeps/unix/sysv/linux/futimes.c
|
| diff --git a/sysdeps/unix/sysv/linux/futimes.c b/sysdeps/unix/sysv/linux/futimes.c
|
| index 272b83eb05ce28e163cb74594d6863db9140b002..82207ced01667cc791ddc2b38ed20af076f5fdba 100644
|
| --- a/sysdeps/unix/sysv/linux/futimes.c
|
| +++ b/sysdeps/unix/sysv/linux/futimes.c
|
| @@ -58,13 +58,13 @@ __futimes (int fd, const struct timeval tvp[2])
|
| }
|
|
|
| #ifdef __ASSUME_UTIMENSAT
|
| - return INLINE_SYSCALL (utimensat, 4, fd, NULL, tvp ? &ts : NULL, 0);
|
| + return INLINE_SYSCALL (utimensat, 4, fd, NULL, tvp ? ts : NULL, 0);
|
| #else
|
| int result;
|
| # ifdef __NR_utimensat
|
| if (!__builtin_expect (miss_utimensat, 0))
|
| {
|
| - result = INLINE_SYSCALL (utimensat, 4, fd, NULL, tvp ? &ts : NULL, 0);
|
| + result = INLINE_SYSCALL (utimensat, 4, fd, NULL, tvp ? ts : NULL, 0);
|
| if (__builtin_expect (result, 0) != -1 || errno != ENOSYS)
|
| return result;
|
|
|
|
|