Fixed elapsed time formatting for omp benchmarks

This commit is contained in:
Yiyao Yu 2021-05-04 17:53:09 -04:00
parent b6ee94515e
commit 7de0994fde
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ print_time_diff (struct timespec *start, struct timespec *end)
nsec += 1000000000;
}
printf ("Elapsed time: %ld.%09ld sec\n", sec, nsec);
printf ("Elapsed time: %ld.%09lds\n", sec, nsec);
}
void