medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 8fbc7396d6da1a130c86e57398a2c2c6c1ee2ef7
parent 7d10a3911e6d018dd6b2648c340190088ada0342
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Tue Feb  2 19:11:07 +0000

Fix benchmark warnings

Diffstat:
benchmark.cc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/benchmark.cc b/benchmark.cc @@ -53,7 +53,7 @@ void benchmark_print_timers() { u64 clocks = timers[ i ].total_clocks; u64 calls = timers[ i ].num_calls; - printf( "%s (%s:%d) called %llu times, %llu clocks, %llu avg\n", + printf( "%s (%s:%d) called %lu times, %lu clocks, %lu avg\n", timers[ i ].fn, timers[ i ].file, timers[ i ].line, calls, clocks, clocks / calls );