summaryrefslogtreecommitdiffstats
path: root/examples/h5_vds.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/h5_vds.c')
-rw-r--r--examples/h5_vds.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/h5_vds.c b/examples/h5_vds.c
index ed6fa55..6a20ed3 100644
--- a/examples/h5_vds.c
+++ b/examples/h5_vds.c
@@ -190,10 +190,10 @@ main (void)
/* We also can use new APIs to get start, stride, count and block */
if (H5Sis_regular_hyperslab(vspace)) {
status = H5Sget_regular_hyperslab (vspace, start_out, stride_out, count_out, block_out);
- printf("start = [%d, %d] \n", (int)start_out[0], (int)start_out[1]);
- printf("stride = [%d, %d] \n", (int)stride_out[0], (int)stride_out[1]);
- printf("count = [%d, %d] \n", (int)count_out[0], (int)count_out[1]);
- printf("block = [%d, %d] \n", (int)block_out[0], (int)block_out[1]);
+ printf(" start = [%d, %d] \n", (int)start_out[0], (int)start_out[1]);
+ printf(" stride = [%d, %d] \n", (int)stride_out[0], (int)stride_out[1]);
+ printf(" count = [%d, %d] \n", (int)count_out[0], (int)count_out[1]);
+ printf(" block = [%d, %d] \n", (int)block_out[0], (int)block_out[1]);
}
}
/* Get source file name. */