fix typo in utimes function that made it mess up file times

This commit is contained in:
Rich Felker 2012-05-21 23:55:36 -04:00
parent 9ae1cf6d29
commit 7b5467cbae
1 changed files with 1 additions and 1 deletions

View File

@ -3,5 +3,5 @@
int utimes(const char *path, const struct timeval times[2]) int utimes(const char *path, const struct timeval times[2])
{ {
return syscall(SYS_utime, path, times); return syscall(SYS_utimes, path, times);
} }