typo error Ld instead of ld

This commit is contained in:
amarmemic
2022-11-10 12:17:08 +01:00
parent c40ae200bd
commit 2ee7dc2d4f

View File

@@ -371,7 +371,7 @@ void polybench_timer_print()
# ifndef POLYBENCH_CYCLE_ACCURATE_TIMER
printf ("%0.6f\n", polybench_t_end - polybench_t_start);
# else
printf ("%Ld\n", polybench_c_end - polybench_c_start);
printf ("%ld\n", polybench_c_end - polybench_c_start);
# endif
#endif
}