summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2015-03-02 21:34:39 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2015-03-02 21:34:39 (GMT)
commit56f74066712e0d61092f9281b99de990ea92eea2 (patch)
treefd9fbb7567b96d3dd41dc763d1b70a439b8657f1 /examples
parenta726992cd88fd43f8daa46e057618138ed310795 (diff)
downloadhdf5-56f74066712e0d61092f9281b99de990ea92eea2.zip
hdf5-56f74066712e0d61092f9281b99de990ea92eea2.tar.gz
hdf5-56f74066712e0d61092f9281b99de990ea92eea2.tar.bz2
[svn-r26343] Improved output.
Diffstat (limited to 'examples')
-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. */