about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/linux/utimes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linux/utimes.c b/src/linux/utimes.c
index d998b401..70c0695f 100644
--- a/src/linux/utimes.c
+++ b/src/linux/utimes.c
@@ -3,5 +3,5 @@
 
 int utimes(const char *path, const struct timeval times[2])
 {
-	return syscall(SYS_utime, path, times);
+	return syscall(SYS_utimes, path, times);
 }