From 0e280eef250c3026e57445c9ebf1e2bbf31cd561 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 1 Feb 2012 20:05:34 +0100 Subject: [PATCH] Grow file num_maps to unsigned long Signed-off-by: Jens Axboe --- file.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/file.h b/file.h index b3ff0514..67ef24f1 100644 --- a/file.h +++ b/file.h @@ -107,9 +107,9 @@ struct fio_file { * block map for random io */ unsigned long *file_map; - unsigned int num_maps; - unsigned int last_free_lookup; - unsigned int failed_rands; + unsigned long num_maps; + unsigned long last_free_lookup; + unsigned failed_rands; int references; enum fio_file_flags flags; -- 2.25.1