aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/futimens.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/sysv/linux/futimens.c')
-rw-r--r--sysdeps/unix/sysv/linux/futimens.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/futimens.c b/sysdeps/unix/sysv/linux/futimens.c
index dfc21c0139..5f2b8a56cd 100644
--- a/sysdeps/unix/sysv/linux/futimens.c
+++ b/sysdeps/unix/sysv/linux/futimens.c
@@ -33,11 +33,15 @@ futimens (int fd, const struct timespec tsp[2])
{
#ifdef __NR_utimensat
if (fd < 0)
- return INLINE_SYSCALL_ERROR_RETURN (-EBADF, int, -1);
+ {
+ __set_errno (EBADF);
+ return -1;
+ }
/* Avoid implicit array coercion in syscall macros. */
- return INLINE_SYSCALL_RETURN (utimensat, 4, int, fd, NULL, &tsp[0], 0);
+ return INLINE_SYSCALL (utimensat, 4, fd, NULL, &tsp[0], 0);
#else
- return INLINE_SYSCALL_ERROR_RETURN (-ENOSYS, int, -1);
+ __set_errno (ENOSYS);
+ return -1;
#endif
}
#ifndef __NR_utimensat