summaryrefslogtreecommitdiffstats
path: root/src/H5VLnative.c
diff options
context:
space:
mode:
authorJordan Henderson <jhenderson@hdfgroup.org>2020-01-03 05:51:25 (GMT)
committerJordan Henderson <jhenderson@hdfgroup.org>2020-02-01 23:54:59 (GMT)
commit2dbcd87fcddfb519369a368a00acbe8826d5a0eb (patch)
treebc9e9d5c5746f9ce2018d4a984c281d23aec5b44 /src/H5VLnative.c
parent20ebc34e01601a7d7d67b925e47227ad9e17110b (diff)
downloadhdf5-2dbcd87fcddfb519369a368a00acbe8826d5a0eb.zip
hdf5-2dbcd87fcddfb519369a368a00acbe8826d5a0eb.tar.gz
hdf5-2dbcd87fcddfb519369a368a00acbe8826d5a0eb.tar.bz2
Fix some places where H5P_DEFAULT gets passed down to a VOL connector
Diffstat (limited to 'src/H5VLnative.c')
-rw-r--r--src/H5VLnative.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5VLnative.c b/src/H5VLnative.c
index c2fab72..616ca60 100644
--- a/src/H5VLnative.c
+++ b/src/H5VLnative.c
@@ -164,7 +164,7 @@ H5VL_native_register(void)
/* Register the native VOL connector, if it isn't already */
if(H5I_INVALID_HID == H5VL_NATIVE_ID_g)
- if((H5VL_NATIVE_ID_g = H5VL_register_connector(&H5VL_native_cls_g, TRUE, H5P_DEFAULT)) < 0)
+ if((H5VL_NATIVE_ID_g = H5VL_register_connector(&H5VL_native_cls_g, TRUE, H5P_VOL_INITIALIZE_DEFAULT)) < 0)
HGOTO_ERROR(H5E_VOL, H5E_CANTINSERT, H5I_INVALID_HID, "can't create ID for native VOL connector")
/* Set return value */