From 230570b5934ccd3572d6af82a27b22ad338bd7c3 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 954b619..2e37aa4 100644 --- a/src/H5Dint.c +++ b/src/H5Dint.c @@ -1425,11 +1425,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