Skip to content

Commit a56292e

Browse files
authored
Update util.c
1 parent deb8365 commit a56292e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

runtime/flang/util.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ void times(tms *time_struct) {
354354
GetProcessTimes( GetCurrentProcess(),
355355
&time_create, &time_exit, &accum_sys, &accum_user );
356356

357-
time_struct->tms_utime = convert_filetime(accum_user);
358-
time_struct->tms_stime = convert_filetime(accum_sys);
357+
time_struct->tms_utime = convert_filetime(&accum_user);
358+
time_struct->tms_stime = convert_filetime(&accum_sys);
359359
}
360360
#endif

0 commit comments

Comments
 (0)