|
|
@@ -90,10 +90,10 @@ static inline struct timeval*
|
|
|
copy_utimes (struct timeval* to, struct Mono_Posix_Timeval *from)
|
|
|
{
|
|
|
if (from) {
|
|
|
- to[0].tv_sec = from->tv_sec;
|
|
|
- to[0].tv_usec = from->tv_usec;
|
|
|
- to[1].tv_sec = from->tv_sec;
|
|
|
- to[1].tv_usec = from->tv_usec;
|
|
|
+ to[0].tv_sec = from[0].tv_sec;
|
|
|
+ to[0].tv_usec = from[0].tv_usec;
|
|
|
+ to[1].tv_sec = from[1].tv_sec;
|
|
|
+ to[1].tv_usec = from[1].tv_usec;
|
|
|
return to;
|
|
|
}
|
|
|
|