diff options
author | Tobias Grimm <etobi@debian.org> | 2009-05-16 13:18:06 +0200 |
---|---|---|
committer | Thomas Günther <tom@toms-cafe.de> | 2009-05-16 13:18:06 +0200 |
commit | aa67dacb2755c0c17f812586cb0091fe1b5d3ca4 (patch) | |
tree | 02130e2f9242b8a893ca51098aa83c87ab55f92f | |
parent | 994378e31383f1d91f63f5af8ac31b9a0aef8b9f (diff) | |
download | vdr-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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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...) |