From d078d2c8e2204808aef5dbd96f1cb4bc091c6771 Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Tue, 14 Jul 2009 19:26:20 -0500 Subject: [svn-r17187] The ret_value is a (H5A_t *) but FAIL was used. This typo caused a warning from Linux gcc but resulted in error by AIX xlc compiler. Solution: Changed FAIL to NULL. Tested: Just compiling in the AIX system. --- src/H5Oattribute.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5Oattribute.c b/src/H5Oattribute.c index f752a6f..253f615 100644 --- a/src/H5Oattribute.c +++ b/src/H5Oattribute.c @@ -539,7 +539,7 @@ H5O_attr_open_by_name(const H5O_loc_t *loc, const char *name, hid_t dxpl_id) /* Mark datatype as being on disk now */ if(H5T_set_loc(ret_value->shared->dt, loc->file, H5T_LOC_DISK) < 0) - HGOTO_ERROR(H5E_ATTR, H5E_CANTINIT, FAIL, "invalid datatype location") + HGOTO_ERROR(H5E_ATTR, H5E_CANTINIT, NULL, "invalid datatype location") } /* end else */ -- cgit v0.12