summaryrefslogtreecommitdiffstats
path: root/src/H5FDstream.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2001-11-21 15:06:25 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2001-11-21 15:06:25 (GMT)
commit2a2d3b21aafa2559c49fd0c47ef2690c1efbd856 (patch)
treed75e3281c9c77f33a59bdb1ef941bcf8dfafc4f1 /src/H5FDstream.c
parenta496459acc6736c1f5ff0a98ed3c71c508c9e27d (diff)
downloadhdf5-2a2d3b21aafa2559c49fd0c47ef2690c1efbd856.zip
hdf5-2a2d3b21aafa2559c49fd0c47ef2690c1efbd856.tar.gz
hdf5-2a2d3b21aafa2559c49fd0c47ef2690c1efbd856.tar.bz2
[svn-r4631] Purpose:
Bug fix Description: Fixed return type from FAIL to NULL. Platforms tested: Daily tests on SGI machines.
Diffstat (limited to 'src/H5FDstream.c')
-rw-r--r--src/H5FDstream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDstream.c b/src/H5FDstream.c
index f8753ae..7572e45 100644
--- a/src/H5FDstream.c
+++ b/src/H5FDstream.c
@@ -676,7 +676,7 @@ static H5FD_t *H5FD_stream_open (const char *filename,
if (H5P_DEFAULT != fapl_id)
{
if(TRUE!=H5P_isa_class(fapl_id,H5P_FILE_ACCESS) || NULL == (plist = H5I_object(fapl_id)))
- HRETURN_ERROR(H5E_ARGS, H5E_BADTYPE, FAIL, "not a file access property list");
+ HRETURN_ERROR(H5E_ARGS, H5E_BADTYPE, NULL, "not a file access property list");
fapl = H5P_get_driver_info (plist);
}
if (fapl == NULL)