fixed polybench warning

This commit is contained in:
Marcel Lütke Dreimann
2023-01-03 11:51:00 +01:00
parent 59b7b5d6ab
commit 09b3d60a03

View File

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