From e26f8f7a38365148ba1f345391da8596a8f7269e Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Sat, 17 Feb 2007 04:39:54 +0100 Subject: [PATCH] [PATCH] file descriptor is int This was mistakenly turned into a long, revert. Signed-off-by: Jens Axboe --- fio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fio.h b/fio.h index 8415dae8..67cc0652 100644 --- a/fio.h +++ b/fio.h @@ -196,7 +196,7 @@ struct fio_file { */ union { unsigned long file_data; - long fd; + int fd; }; char *file_name; void *mmap; -- 2.25.1