[PATCH] Pass full required size into create_file()
diff --git a/fio.c b/fio.c
index 47e0298..82f321b 100644
--- a/fio.c
+++ b/fio.c
@@ -1184,7 +1184,7 @@
 			return 1;
 	} else if (td->filetype == FIO_TYPE_FILE) {
 		if (st.st_size < (off_t) td->file_size) {
-			if (create_file(td, td->file_size - st.st_size, 1))
+			if (create_file(td, td->file_size, 1))
 				return 1;
 		}
 	}