From fb6ecf33b0e39b5568b648f9c6a59e7d95f5547c Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Sat, 27 Oct 2018 02:43:40 -0500 Subject: Fix names of VOL API routines. --- examples/h5_vol_external_log_native.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/h5_vol_external_log_native.c b/examples/h5_vol_external_log_native.c index 1a6685c..9c761a5 100644 --- a/examples/h5_vol_external_log_native.c +++ b/examples/h5_vol_external_log_native.c @@ -174,7 +174,7 @@ int main(int argc, char **argv) { H5Pset_fapl_native(under_fapl); assert(H5VLis_plugin_registered("native") == 1); - vol_id = H5VLregister_plugin(&H5VL_log_g); + vol_id = H5VLregister_plugin(&H5VL_log_g, H5P_DEFAULT); assert(vol_id > 0); assert(H5VLis_plugin_registered("log") == 1); @@ -242,7 +242,7 @@ int main(int argc, char **argv) { H5Pclose(under_fapl); H5VLclose(native_plugin_id); - H5VLunregister_driver(vol_id); + H5VLunregister_plugin(vol_id); assert(H5VLis_plugin_registered("log") == 0); return 0; } -- cgit v0.12