summaryrefslogtreecommitdiffstats
path: root/src/H5FDgass.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2001-11-27 18:05:32 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2001-11-27 18:05:32 (GMT)
commit25aa2b69383b9ce72d32d2d21b8a6365dcf81c73 (patch)
tree77c9eb90463351c004eaab2b7219bc7ab052808c /src/H5FDgass.c
parent7c0c461e415781bdb142614f95a4af1457d6fc8f (diff)
downloadhdf5-25aa2b69383b9ce72d32d2d21b8a6365dcf81c73.zip
hdf5-25aa2b69383b9ce72d32d2d21b8a6365dcf81c73.tar.gz
hdf5-25aa2b69383b9ce72d32d2d21b8a6365dcf81c73.tar.bz2
[svn-r4647] Purpose:
Bug fix Description: Changed return value from "FAIL" to "NULL" for error condition, which was caused the SGI machines testing the GASS drivers to fail over the weekend. Platforms tested: IRIX64 6.5 (modi4)
Diffstat (limited to 'src/H5FDgass.c')
-rw-r--r--src/H5FDgass.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDgass.c b/src/H5FDgass.c
index 3ffe24d..25bcdaf 100644
--- a/src/H5FDgass.c
+++ b/src/H5FDgass.c
@@ -349,7 +349,7 @@ H5FD_gass_open(const char *name, unsigned flags, hid_t fapl_id,
/* Obtain a pointer to gass-specific file access properties */
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");
if (H5P_DEFAULT==fapl_id || H5FD_GASS!=H5P_get_driver(plist)) {
GASS_INFO_NULL (_fa.info);
/* _fa.info = GASS_INFO_NULL; */