From 25aa2b69383b9ce72d32d2d21b8a6365dcf81c73 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Tue, 27 Nov 2001 13:05:32 -0500 Subject: [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) --- src/H5FDgass.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; */ -- cgit v0.12