diff options
Diffstat (limited to 'sysdeps/posix/utimes.c')
-rw-r--r-- | sysdeps/posix/utimes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/posix/utimes.c b/sysdeps/posix/utimes.c index 21da94751b..d0381a5b68 100644 --- a/sysdeps/posix/utimes.c +++ b/sysdeps/posix/utimes.c @@ -31,8 +31,8 @@ __utimes (const char *file, const struct timeval tvp[2]) if (tvp) { times = &buf; - buf.actime = tvp[0].tv_sec + (tvp[0].tv_usec + 500000) / 1000000; - buf.modtime = tvp[1].tv_sec + (tvp[1].tv_usec + 500000) / 1000000; + buf.actime = tvp[0].tv_sec + tvp[0].tv_usec / 1000000; + buf.modtime = tvp[1].tv_sec + tvp[1].tv_usec / 1000000; } else times = NULL; |