summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Grimm <etobi@debian.org>2009-05-16 13:18:06 +0200
committerThomas Günther <tom@toms-cafe.de>2009-05-16 13:18:06 +0200
commitaa67dacb2755c0c17f812586cb0091fe1b5d3ca4 (patch)
tree02130e2f9242b8a893ca51098aa83c87ab55f92f
parent994378e31383f1d91f63f5af8ac31b9a0aef8b9f (diff)
downloadvdr-plugin-text2skin-aa67dacb2755c0c17f812586cb0091fe1b5d3ca4.tar.gz
vdr-plugin-text2skin-aa67dacb2755c0c17f812586cb0091fe1b5d3ca4.tar.bz2
Replaced 'uint64' with 'uint64_t' to avoid problems on 64-bit machines
-rw-r--r--common.h2
1 files changed, 1 insertions, 1 deletions
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...)