From 8754e38ce7b41398f2340e8b7ac1538cddfd8433 Mon Sep 17 00:00:00 2001 From: vchoi Date: Mon, 6 Apr 2020 19:26:49 -0500 Subject: Fix an error in previous merge: should use NULL instead of FAIL. --- src/H5Dint.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/H5Dint.c b/src/H5Dint.c index da05a9e..46ae8ca 100644 --- a/src/H5Dint.c +++ b/src/H5Dint.c @@ -1426,11 +1426,11 @@ done: if(new_dset->shared->type) { if(new_dset->shared->type_id > 0) { if(H5I_dec_ref(new_dset->shared->type_id) < 0) - HDONE_ERROR(H5E_DATASET, H5E_CLOSEERROR, FAIL, "unable to release datatype") + HDONE_ERROR(H5E_DATASET, H5E_CLOSEERROR, NULL, "unable to release datatype") } /* end if */ else { if(H5T_close_real(new_dset->shared->type) < 0) - HDONE_ERROR(H5E_DATASET, H5E_CLOSEERROR, FAIL, "unable to release datatype") + HDONE_ERROR(H5E_DATASET, H5E_CLOSEERROR, NULL, "unable to release datatype") } /* end else */ } /* end if */ -- cgit v0.12