summaryrefslogtreecommitdiffstats
path: root/src/H5trace.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@koziol.gov>2019-12-21 04:41:00 (GMT)
committerQuincey Koziol <koziol@koziol.gov>2020-01-04 16:02:39 (GMT)
commitfa599f450832c6284969c47b8e2cad1f5c6752c7 (patch)
treed5fca85471b901bbd52ca1bba5f3a7891bc36869 /src/H5trace.c
parent7d87aea63fb7387b88b7fd8057feb9e42e53bd8c (diff)
downloadhdf5-fa599f450832c6284969c47b8e2cad1f5c6752c7.zip
hdf5-fa599f450832c6284969c47b8e2cad1f5c6752c7.tar.gz
hdf5-fa599f450832c6284969c47b8e2cad1f5c6752c7.tar.bz2
Refactor H5Dvlen_get_buf_size to use optional dataset operation, with generic fallback for VOL connectors that don't implement operation
Diffstat (limited to 'src/H5trace.c')
-rw-r--r--src/H5trace.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5trace.c b/src/H5trace.c
index b996638..ed5f7fe 100644
--- a/src/H5trace.c
+++ b/src/H5trace.c
@@ -2729,9 +2729,6 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
case H5VL_DATASET_GET_OFFSET:
HDfprintf(out, "H5VL_DATASET_GET_OFFSET");
break;
- case H5VL_DATASET_GET_VLEN_BUF_SIZE:
- HDfprintf(out, "H5VL_DATASET_GET_VLEN_BUF_SIZE");
- break;
default:
HDfprintf(out, "%ld", (long)get);
break;
@@ -3250,6 +3247,9 @@ H5_trace(const double *returning, const char *func, const char *type, ...)
case H5VL_NATIVE_DATASET_CHUNK_WRITE:
HDfprintf(out, "H5VL_NATIVE_DATASET_CHUNK_WRITE");
break;
+ case H5VL_NATIVE_DATASET_GET_VLEN_BUF_SIZE:
+ HDfprintf(out, "H5VL_NATIVE_DATASET_GET_VLEN_BUF_SIZE");
+ break;
default:
HDfprintf(out, "%ld", (long)optional);
break;