diff options
author | Quincey Koziol <koziol@koziol.gov> | 2019-12-21 04:41:00 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-05-20 14:20:21 (GMT) |
commit | 53e62bcbeba14c2b09f61ac35e9d74447fa2b8a5 (patch) | |
tree | 80e026bf6b7367646f8cfb675b3d7b33180b62d1 /src/H5trace.c | |
parent | ba9f12b6d866417ad947562f3865cabd402199b9 (diff) | |
download | hdf5-53e62bcbeba14c2b09f61ac35e9d74447fa2b8a5.zip hdf5-53e62bcbeba14c2b09f61ac35e9d74447fa2b8a5.tar.gz hdf5-53e62bcbeba14c2b09f61ac35e9d74447fa2b8a5.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.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5trace.c b/src/H5trace.c index f52db02..83f0ac7 100644 --- a/src/H5trace.c +++ b/src/H5trace.c @@ -2733,9 +2733,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; @@ -3254,6 +3251,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; |