[svn-r1302]

replaced the 0 in the function call to h5dump_simple_dset to DATSET_DATA
This commit is contained in:
Patrick Lu 1999-06-04 13:29:52 -05:00
parent 2ce9e72bfb
commit 8374f82883

View File

@ -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;
}