summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-06-04 18:29:52 (GMT)
committerPatrick Lu <ptlu@hawkwind.ncsa.uiuc.edu>1999-06-04 18:29:52 (GMT)
commit8374f82883cae8e2c7c2f89d9ee81408a861d9a0 (patch)
tree10e411ef1b2877cb91f7a38e31d9c2b9b1c8bc0c /tools
parent2ce9e72bfbb73d4f3a56ac4f34b980ba7b17c5c7 (diff)
downloadhdf5-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')
-rw-r--r--tools/h5tools.c2
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;
}