Skip to content

Commit

Permalink
Update util.c
Browse files Browse the repository at this point in the history
  • Loading branch information
xoviat authored Oct 29, 2017
1 parent deb8365 commit a56292e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/flang/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ void times(tms *time_struct) {
GetProcessTimes( GetCurrentProcess(),
&time_create, &time_exit, &accum_sys, &accum_user );

time_struct->tms_utime = convert_filetime(accum_user);
time_struct->tms_stime = convert_filetime(accum_sys);
time_struct->tms_utime = convert_filetime(&accum_user);
time_struct->tms_stime = convert_filetime(&accum_sys);
}
#endif

0 comments on commit a56292e

Please sign in to comment.