diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2015-06-18 21:54:51 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2015-06-18 21:54:51 (GMT) |
commit | b32c1bc3ff629ee15cc165094399dcc928f46b03 (patch) | |
tree | e825776a9afb93faca3c58bbcc62af4716f585a0 /examples/h5_vds-eiger.c | |
parent | 7fdb38eb6f07c3b24879885227993479849f107f (diff) | |
download | hdf5-b32c1bc3ff629ee15cc165094399dcc928f46b03.zip hdf5-b32c1bc3ff629ee15cc165094399dcc928f46b03.tar.gz hdf5-b32c1bc3ff629ee15cc165094399dcc928f46b03.tar.bz2 |
[svn-r27245] Maintenance: Eiger example had wrong printf type of name (had dimension number in it). Fixed.
Tested on jam.
Diffstat (limited to 'examples/h5_vds-eiger.c')
-rw-r--r-- | examples/h5_vds-eiger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/h5_vds-eiger.c b/examples/h5_vds-eiger.c index c459aa4..a6ab827 100644 --- a/examples/h5_vds-eiger.c +++ b/examples/h5_vds-eiger.c @@ -79,7 +79,7 @@ main (void) * */ status = H5Sselect_hyperslab (vspace, H5S_SELECT_SET, start, stride, count, block); - status = H5Pset_virtual (dcpl, vspace, "f-%0b.h5", "/A", src_space); + status = H5Pset_virtual (dcpl, vspace, "f-%b.h5", "/A", src_space); |