From 04146b233f28f364c4ff9b92f714c6c860180d2a Mon Sep 17 00:00:00 2001 From: Matthieu Schaller <matthieu.schaller@durham.ac.uk> Date: Mon, 6 Nov 2017 11:12:02 +0000 Subject: [PATCH] Corrected typo in parallel_io.c --- src/parallel_io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parallel_io.c b/src/parallel_io.c index 53cd602054..d80a1080ca 100644 --- a/src/parallel_io.c +++ b/src/parallel_io.c @@ -75,7 +75,7 @@ void readArray(hid_t grp, const struct io_props prop, size_t N, const size_t num_elements = N * prop.dimension; /* Can't handle reads of more than 2GB */ - if (N * props.dimension * typeSize > HDF5_PARALLEL_IO_MAX_BYTES) + if (N * prop.dimension * typeSize > HDF5_PARALLEL_IO_MAX_BYTES) error("Dataset too large to be read in one pass!"); /* Check whether the dataspace exists or not */ -- GitLab