From 5d9a93b61d374c427554dd2ff9574539bc8861ab Mon Sep 17 00:00:00 2001 From: Dana Robinson Date: Sat, 8 Dec 2018 07:22:40 -0800 Subject: Minor tweak to address JIRA HDFFV-10611 (which was already fixed). --- src/H5Tcommit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/H5Tcommit.c b/src/H5Tcommit.c index 610c628..712b264 100644 --- a/src/H5Tcommit.c +++ b/src/H5Tcommit.c @@ -155,7 +155,7 @@ H5Tcommit2(hid_t loc_id, const char *name, hid_t type_id, hid_t lcpl_id, /* Set up VOL object */ if(NULL == (new_obj = H5FL_CALLOC(H5VL_object_t))) - HGOTO_ERROR(H5E_VOL, H5E_NOSPACE, FAIL, "can't allocate top object structure") + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTALLOC, FAIL, "can't allocate top object structure") new_obj->connector = vol_obj->connector; new_obj->connector->nrefs ++; new_obj->data = data; @@ -308,7 +308,7 @@ H5Tcommit_anon(hid_t loc_id, hid_t type_id, hid_t tcpl_id, hid_t tapl_id) /* Setup VOL object */ if(NULL == (new_obj = H5FL_CALLOC(H5VL_object_t))) - HGOTO_ERROR(H5E_VOL, H5E_NOSPACE, FAIL, "can't allocate top object structure") + HGOTO_ERROR(H5E_DATATYPE, H5E_CANTALLOC, FAIL, "can't allocate top object structure") new_obj->connector = vol_obj->connector; new_obj->connector->nrefs ++; new_obj->data = dt; -- cgit v0.12