| Index: fusl/src/stat/futimesat.c
|
| diff --git a/fusl/src/stat/futimesat.c b/fusl/src/stat/futimesat.c
|
| index b4eea1d3c440be057012e0ef82efc38ad74219d9..d59df74ce15c18cc2ab86ea2f00962686f5364f9 100644
|
| --- a/fusl/src/stat/futimesat.c
|
| +++ b/fusl/src/stat/futimesat.c
|
| @@ -5,19 +5,20 @@
|
| #include "syscall.h"
|
| #include "libc.h"
|
|
|
| -int __futimesat(int dirfd, const char *pathname, const struct timeval times[2])
|
| -{
|
| - struct timespec ts[2];
|
| - if (times) {
|
| - int i;
|
| - for (i=0; i<2; i++) {
|
| - if (times[i].tv_usec >= 1000000ULL)
|
| - return __syscall_ret(-EINVAL);
|
| - ts[i].tv_sec = times[i].tv_sec;
|
| - ts[i].tv_nsec = times[i].tv_usec * 1000;
|
| - }
|
| - }
|
| - return utimensat(dirfd, pathname, times ? ts : 0, 0);
|
| +int __futimesat(int dirfd,
|
| + const char* pathname,
|
| + const struct timeval times[2]) {
|
| + struct timespec ts[2];
|
| + if (times) {
|
| + int i;
|
| + for (i = 0; i < 2; i++) {
|
| + if (times[i].tv_usec >= 1000000ULL)
|
| + return __syscall_ret(-EINVAL);
|
| + ts[i].tv_sec = times[i].tv_sec;
|
| + ts[i].tv_nsec = times[i].tv_usec * 1000;
|
| + }
|
| + }
|
| + return utimensat(dirfd, pathname, times ? ts : 0, 0);
|
| }
|
|
|
| weak_alias(__futimesat, futimesat);
|
|
|