diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2012-04-26 14:51:36 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2012-04-26 14:51:36 (GMT) |
commit | 8c138d7844935a882c70f1db20c691c9a04b38af (patch) | |
tree | 946cb3c26d1c8a7f233116052ecd55fe386eceb5 /tools/h5dump | |
parent | 447d13e82bd4901b42cabf1580c889b29d5f906b (diff) | |
download | hdf5-8c138d7844935a882c70f1db20c691c9a04b38af.zip hdf5-8c138d7844935a882c70f1db20c691c9a04b38af.tar.gz hdf5-8c138d7844935a882c70f1db20c691c9a04b38af.tar.bz2 |
[svn-r22318] Use new function that combines two functions that check for vlen types. Based on code used in h5ls.
Tested: local linux
Diffstat (limited to 'tools/h5dump')
-rw-r--r-- | tools/h5dump/h5dump_xml.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/h5dump/h5dump_xml.c b/tools/h5dump/h5dump_xml.c index e6f8043..0c48216 100644 --- a/tools/h5dump/h5dump_xml.c +++ b/tools/h5dump/h5dump_xml.c @@ -1883,9 +1883,7 @@ xml_dump_data(hid_t obj_id, int obj_data, struct subset_t UNUSED * sset, int UNU p_type = h5tools_get_native_type(type); /* Check if we have VL data in the dataset's datatype */ - if (h5tools_detect_vlen_str(p_type) == TRUE) - vl_data = TRUE; - if (H5Tdetect_class(p_type, H5T_VLEN) == TRUE) + if (h5tools_detect_vlen(p_type) == TRUE) vl_data = TRUE; H5Tclose(type); |