diff options
author | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-06-04 18:29:52 (GMT) |
---|---|---|
committer | Patrick Lu <ptlu@hawkwind.ncsa.uiuc.edu> | 1999-06-04 18:29:52 (GMT) |
commit | 8374f82883cae8e2c7c2f89d9ee81408a861d9a0 (patch) | |
tree | 10e411ef1b2877cb91f7a38e31d9c2b9b1c8bc0c /tools/h5tools.c | |
parent | 2ce9e72bfbb73d4f3a56ac4f34b980ba7b17c5c7 (diff) | |
download | hdf5-8374f82883cae8e2c7c2f89d9ee81408a861d9a0.zip hdf5-8374f82883cae8e2c7c2f89d9ee81408a861d9a0.tar.gz hdf5-8374f82883cae8e2c7c2f89d9ee81408a861d9a0.tar.bz2 |
[svn-r1302]
replaced the 0 in the function call to h5dump_simple_dset to DATSET_DATA
Diffstat (limited to 'tools/h5tools.c')
-rw-r--r-- | tools/h5tools.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/h5tools.c b/tools/h5tools.c index 01114ed..bdbd98e 100644 --- a/tools/h5tools.c +++ b/tools/h5tools.c @@ -1441,7 +1441,7 @@ h5dump_dset(FILE *stream, const h5dump_t *info, hid_t dset, hid_t _p_type) H5Sclose(f_space); /* Print the data */ - status = h5dump_simple_dset(stream, info, dset, p_type, 0); + status = h5dump_simple_dset(stream, info, dset, p_type, DATASET_DATA); if (p_type!=_p_type) H5Tclose(p_type); return status; } |