diff options
author | Albert Cheng <acheng@hdfgroup.org> | 1999-12-17 14:37:22 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 1999-12-17 14:37:22 (GMT) |
commit | 2c7bbf697f56815d82c298e1103870daebe298c3 (patch) | |
tree | 1df07bb74e8d7f53bdb1c931a35b40eec27bcf67 /src/H5FDgass.c | |
parent | 36c94d90182b5740742aff9d15edc430520e2c71 (diff) | |
download | hdf5-2c7bbf697f56815d82c298e1103870daebe298c3.zip hdf5-2c7bbf697f56815d82c298e1103870daebe298c3.tar.gz hdf5-2c7bbf697f56815d82c298e1103870daebe298c3.tar.bz2 |
[svn-r1881] Changed all the HAVE_PARALLEL and HAVE_GASS macros to the new
form of H5_HAVE_PARALLEL and H5_HAVE_GASS.
Diffstat (limited to 'src/H5FDgass.c')
-rw-r--r-- | src/H5FDgass.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5FDgass.c b/src/H5FDgass.c index ec545f1..911053d 100644 --- a/src/H5FDgass.c +++ b/src/H5FDgass.c @@ -22,7 +22,7 @@ /* The driver identification number, initialized at runtime */ static hid_t H5FD_GASS_g = 0; -#ifdef HAVE_GASS +#ifdef H5_HAVE_GASS /* File operations */ #define OP_UNKNOWN 0 @@ -354,7 +354,7 @@ H5FD_gass_open(const char *name, unsigned flags, hid_t fapl_id, if ((flags & H5F_ACC_CREAT) && (flags & H5F_ACC_RDWR) && (flags & H5F_ACC_EXCL)) { if ((fd = globus_gass_open (filename, O_RDWR|O_TRUNC)) < 0) - HRETURN_ERROR(H5E_IO, H5E_CANTOPENFILE, FAIL, "open failed"); + HRETURN_ERROR(H5E_IO, H5E_CANTOPENFILE, NULL, "open failed"); } else if ((flags & H5F_ACC_CREAT) && (flags & H5F_ACC_RDWR) && (flags & H5F_ACC_TRUNC)) { @@ -675,4 +675,4 @@ H5FD_gass_write(H5FD_t *_file, hid_t dxpl_id/*unused*/, haddr_t addr, FUNC_LEAVE(SUCCEED); } -#endif /* HAVE_GASS */ +#endif /* H5_HAVE_GASS */ |