From 843237f7ae3062a7dbf3ad636bb016063b6dda08 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20Mr=C3=A1zek?= Date: Mon, 28 Dec 2009 04:38:07 +0000 Subject: [PATCH] small tweak to expbench - use 64bit integer for the number of bytes read --- tools/expbench.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/expbench.cpp b/tools/expbench.cpp index d3d3fe4c0..1de7cff22 100644 --- a/tools/expbench.cpp +++ b/tools/expbench.cpp @@ -16,7 +16,7 @@ int main (void) uint32_t x_max,y_max,z_max; uint32_t num_blocks = 0; - uint32_t bytes_read = 0; + uint64_t bytes_read = 0; uint16_t tiletypes[16][16]; DFHack::t_designation designations[16][16]; DFHack::t_occupancy occupancies[16][16];