diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2009-07-15 00:26:20 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2009-07-15 00:26:20 (GMT) |
commit | d078d2c8e2204808aef5dbd96f1cb4bc091c6771 (patch) | |
tree | 990db1d8ec5b24df2c682d1c521d0a763bec71c4 /src/H5Oattribute.c | |
parent | a739b62eccb9748d7089d6db527fed7159ebe3b1 (diff) | |
download | hdf5-d078d2c8e2204808aef5dbd96f1cb4bc091c6771.zip hdf5-d078d2c8e2204808aef5dbd96f1cb4bc091c6771.tar.gz hdf5-d078d2c8e2204808aef5dbd96f1cb4bc091c6771.tar.bz2 |
[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.
Diffstat (limited to 'src/H5Oattribute.c')
-rw-r--r-- | src/H5Oattribute.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |