diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1999-07-03 10:34:45 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1999-07-03 10:34:45 (GMT) |
commit | 306b3103665ae62d03cd7fb5c871b329890ec452 (patch) | |
tree | 4be3d040a51f8d0f512bce2783e975cc4f76606b | |
parent | 3bdafe922acf2cee93b2a5e0f25ffab706226d84 (diff) | |
download | hdf5-306b3103665ae62d03cd7fb5c871b329890ec452.zip hdf5-306b3103665ae62d03cd7fb5c871b329890ec452.tar.gz hdf5-306b3103665ae62d03cd7fb5c871b329890ec452.tar.bz2 |
[svn-r1420] Modified to add new dataset transfer property list ID in H5Tconvert.
-rw-r--r-- | tools/h5dump.c | 2 | ||||
-rw-r--r-- | tools/h5ls.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tools/h5dump.c b/tools/h5dump.c index 271a2d5..f288db9 100644 --- a/tools/h5dump.c +++ b/tools/h5dump.c @@ -1648,7 +1648,7 @@ static void print_enum(hid_t type){ } /* Convert values to native data type */ - if (native>0) H5Tconvert(super, native, nmembs, value, NULL); + if (native>0) H5Tconvert(super, native, nmembs, value, NULL, H5P_DEFAULT); /* Sort members by increasing value */ /*not implemented yet*/ diff --git a/tools/h5ls.c b/tools/h5ls.c index be46c14..0f2640e 100644 --- a/tools/h5ls.c +++ b/tools/h5ls.c @@ -818,7 +818,7 @@ display_enum_type(hid_t type, int ind) } /* Convert values to native data type */ - if (native>0) H5Tconvert(super, native, nmembs, value, NULL); + if (native>0) H5Tconvert(super, native, nmembs, value, NULL, H5P_DEFAULT); /* Sort members by increasing value */ /*not implemented yet*/ |