diff options
-rw-r--r-- | tools/lib/h5tools.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/lib/h5tools.c b/tools/lib/h5tools.c index 720d8c3..06f6b2d 100644 --- a/tools/lib/h5tools.c +++ b/tools/lib/h5tools.c @@ -81,7 +81,10 @@ const char *volnames[] = { * */ const char *drivernames[] = { - "sec2", "direct", "log", "windows", "stdio", "core", "family", "split", "multi", "mpio", "ros3", "hdfs", + [SEC2_VFD_IDX] = "sec2", [DIRECT_VFD_IDX] = "direct", [LOG_VFD_IDX] = "log", + [WINDOWS_VFD_IDX] = "windows", [STDIO_VFD_IDX] = "stdio", [CORE_VFD_IDX] = "core", + [FAMILY_VFD_IDX] = "family", [SPLIT_VFD_IDX] = "split", [MULTI_VFD_IDX] = "multi", + [MPIO_VFD_IDX] = "mpio", [ROS3_VFD_IDX] = "ros3", [HDFS_VFD_IDX] = "hdfs", }; #define NUM_VOLS (sizeof(volnames) / sizeof(volnames[0])) |