diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-11-11 15:58:12 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-11-11 15:58:12 (GMT) |
commit | 04223a18f42f806646f8bb4a0ebfd819779d4ed4 (patch) | |
tree | 3a0321cb258b700639dd5486766585fc247001a8 /src/H5D.c | |
parent | 47bef3253073160b2eddecf0fc7da00e142d7d52 (diff) | |
download | hdf5-04223a18f42f806646f8bb4a0ebfd819779d4ed4.zip hdf5-04223a18f42f806646f8bb4a0ebfd819779d4ed4.tar.gz hdf5-04223a18f42f806646f8bb4a0ebfd819779d4ed4.tar.bz2 |
[svn-r2866] Purpose:
Code cleanup
Description:
Found more "Have_foo" usage and converted them to "H5_HAVE_foo"
Platforms tested:
FreeBSD 4.1.1 (hawkwind)
Diffstat (limited to 'src/H5D.c')
-rw-r--r-- | src/H5D.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1661,7 +1661,7 @@ H5D_read(H5D_t *dataset, const H5T_t *mem_type, const H5S_t *mem_space, IS_H5FD_MPIO(dataset->ent.file)) { sconv->read = H5S_mpio_spaces_read; } -#endif /*HAVE_PARALLEL*/ +#endif /*H5_HAVE_PARALLEL*/ /* * If there is no type conversion then try reading directly into the @@ -2074,7 +2074,7 @@ H5D_write(H5D_t *dataset, const H5T_t *mem_type, const H5S_t *mem_space, IS_H5FD_MPIO(dataset->ent.file)) { sconv->write = H5S_mpio_spaces_write; } -#endif /*HAVE_PARALLEL*/ +#endif /*H5_HAVE_PARALLEL*/ /* * If there is no type conversion then try writing directly from |