mirror of git://git.musl-libc.org/musl
fix typo in utimes function that made it mess up file times
This commit is contained in:
parent
9ae1cf6d29
commit
7b5467cbae
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue