diff options
-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*/ |