summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/H5Shyper.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Shyper.c b/src/H5Shyper.c
index 8e2e979..c19de54 100644
--- a/src/H5Shyper.c
+++ b/src/H5Shyper.c
@@ -6082,7 +6082,8 @@ H5S__hyper_make_spans(unsigned rank, const hsize_t *start, const hsize_t *stride
last_span = NULL;
/* Generate all the span segments for this dimension */
- for(u = 0, stride_iter = 0; u < count[i]; u++, stride_iter += stride[i]) {
+ for(u = 0, stride_iter = 0; u < count[i]; u++, stride_iter += stride[i])
+ {
H5S_hyper_span_t *span; /* New hyperslab span */
/* Allocate a span node */