Skip to content
Snippets Groups Projects
Commit 04146b23 authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Corrected typo in parallel_io.c

parent 5931f8bd
No related branches found
No related tags found
No related merge requests found
......@@ -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 */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment