summaryrefslogtreecommitdiff
path: root/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'common.h')
-rw-r--r--common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common.h b/common.h
index f4ec281..9d7b30a 100644
--- a/common.h
+++ b/common.h
@@ -17,7 +17,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...)
@@ -25,7 +25,7 @@
# define Ddiff(t,x)
#endif
-#define DStartBench(x) uint64 bench_##x = time_ms()
+#define DStartBench(x) uint64_t bench_##x = time_ms()
#define DShowBench(t,x) fprintf(stderr, "%s took %llu ms\n", t, time_ms() - bench_##x)
#if VDRVERSNUM >= 10318