mmap engine: allow large files on 32-bit archs
[fio.git] / parse.c
diff --git a/parse.c b/parse.c
index a8f42e1d6185159b9ad5c076a3a82d207e9a1b06..7dc5fcc869ff05b21accb95257bb4fa473d188f3 100644 (file)
--- a/parse.c
+++ b/parse.c
@@ -304,7 +304,8 @@ static int __handle_option(struct fio_option *o, const char *ptr, void *data,
                if (fn)
                        ret = fn(data, &ull);
                else {
-                       if (o->type == FIO_OPT_STR_VAL_INT) {
+                       if (o->type == FIO_OPT_STR_VAL_INT ||
+                           o->type == FIO_OPT_INT) {
                                if (first)
                                        val_store(ilp, ull, o->off1, data);
                                if (!more && o->off2)