diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2010-07-21 17:15:13 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2010-07-21 17:15:13 (GMT) |
commit | 6a6114b8daadfb86dd75226f25a1a442dd834c04 (patch) | |
tree | f00ce44afd1fbe411c90aea4faa2baaf34509b9f /src | |
parent | e401f1e336d7b9eb68e693a9e3d89552782773d8 (diff) | |
download | hdf5-6a6114b8daadfb86dd75226f25a1a442dd834c04.zip hdf5-6a6114b8daadfb86dd75226f25a1a442dd834c04.tar.gz hdf5-6a6114b8daadfb86dd75226f25a1a442dd834c04.tar.bz2 |
[svn-r19119] Description:
Fix return value from FAIL to NULL.
Tested on:
Eyeballed only
(too trivial to test)
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Shyper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Shyper.c b/src/H5Shyper.c index df81275..937fc26 100644 --- a/src/H5Shyper.c +++ b/src/H5Shyper.c @@ -1385,7 +1385,7 @@ H5S_hyper_copy_span(H5S_hyper_span_info_t *spans) /* Copy the hyperslab span tree */ if(NULL == (ret_value = H5S_hyper_copy_span_helper(spans))) - HGOTO_ERROR(H5E_DATASPACE, H5E_CANTCOPY, FAIL, "can't copy hyperslab span tree") + HGOTO_ERROR(H5E_DATASPACE, H5E_CANTCOPY, NULL, "can't copy hyperslab span tree") /* Reset the scratch pointers for the next routine which needs them */ H5S_hyper_span_scratch(spans, NULL); |