We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent deb8365 commit a56292eCopy full SHA for a56292e
runtime/flang/util.c
@@ -354,7 +354,7 @@ void times(tms *time_struct) {
354
GetProcessTimes( GetCurrentProcess(),
355
&time_create, &time_exit, &accum_sys, &accum_user );
356
357
- time_struct->tms_utime = convert_filetime(accum_user);
358
- time_struct->tms_stime = convert_filetime(accum_sys);
+ time_struct->tms_utime = convert_filetime(&accum_user);
+ time_struct->tms_stime = convert_filetime(&accum_sys);
359
}
360
#endif
0 commit comments