summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-07-21 17:14:27 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-07-21 17:14:27 (GMT)
commit64ab5ef6b43ad4221bb3b880d803aeb258ef4c7f (patch)
tree66316cb23ebd0382855a5acfa906c660e1274dbd
parent3e87f7582244a9cfe2b91497468f52097730165b (diff)
downloadhdf5-64ab5ef6b43ad4221bb3b880d803aeb258ef4c7f.zip
hdf5-64ab5ef6b43ad4221bb3b880d803aeb258ef4c7f.tar.gz
hdf5-64ab5ef6b43ad4221bb3b880d803aeb258ef4c7f.tar.bz2
[svn-r19118] Description:
Fix return value from FAIL to NULL. Tested on: Eyeballed only (too trivial to test)
-rw-r--r--src/H5Shyper.c2
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);