summaryrefslogtreecommitdiffstats
path: root/tools/lib/h5tools.h
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2020-04-14 11:31:01 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2020-04-14 11:31:01 (GMT)
commit28d2596f6551198ea45b35098a037a556b824505 (patch)
tree88fba8a6b8319f14be46aa8fea00b3fed90df5dc /tools/lib/h5tools.h
parente9ad3bad4e8f1331ba28855be283fbd023da1ff0 (diff)
downloadhdf5-28d2596f6551198ea45b35098a037a556b824505.zip
hdf5-28d2596f6551198ea45b35098a037a556b824505.tar.gz
hdf5-28d2596f6551198ea45b35098a037a556b824505.tar.bz2
Changed identifiers and command-line options from "id" to "value" in tools
code to be in agreement with H5VL API terminology.
Diffstat (limited to 'tools/lib/h5tools.h')
-rw-r--r--tools/lib/h5tools.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/lib/h5tools.h b/tools/lib/h5tools.h
index fd09a14..b931dc8 100644
--- a/tools/lib/h5tools.h
+++ b/tools/lib/h5tools.h
@@ -542,7 +542,7 @@ typedef struct h5tools_context_t {
typedef enum {
VFD_BY_NAME,
VOL_BY_NAME,
- VOL_BY_ID
+ VOL_BY_VALUE
} h5tools_fapl_info_type_t;
typedef struct h5tools_fapl_info_t {
@@ -553,8 +553,8 @@ typedef struct h5tools_fapl_info_t {
/* Field specifying either the driver's/connector's name or ID */
union {
- const char *name;
- long id;
+ const char *name; /* VOL and VFD */
+ H5VL_class_value_t value; /* VOL only */
} u;
} h5tools_fapl_info_t;