From aa67dacb2755c0c17f812586cb0091fe1b5d3ca4 Mon Sep 17 00:00:00 2001 From: Tobias Grimm Date: Sat, 16 May 2009 13:18:06 +0200 Subject: Replaced 'uint64' with 'uint64_t' to avoid problems on 64-bit machines --- common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.h b/common.h index a86dc81..68e55d2 100644 --- a/common.h +++ b/common.h @@ -16,7 +16,7 @@ # else # define Dprintf(x...) # endif -# define Dbench(x) uint64 bench_##x = time_ms() +# define Dbench(x) uint64_t bench_##x = time_ms() # define Ddiff(t,x) fprintf(stderr, "%s took %llu ms\n", t, time_ms() - bench_##x) #else # define Dprintf(x...) -- cgit v1.2.3