diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-11-29 21:28:31 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-11-29 21:28:31 (GMT) |
commit | 22303f9d3f867e01da2bdf7f1b9246779ca88ccb (patch) | |
tree | a7ff6aa1a5949ecc3eb93bc30f2de8fe1094b9e9 /src/H5FDfamily.c | |
parent | c40d42e6b6bc2b3ad06100623f06eb1d1e07203c (diff) | |
download | hdf5-22303f9d3f867e01da2bdf7f1b9246779ca88ccb.zip hdf5-22303f9d3f867e01da2bdf7f1b9246779ca88ccb.tar.gz hdf5-22303f9d3f867e01da2bdf7f1b9246779ca88ccb.tar.bz2 |
[svn-r3027] Purpose:
Bug fix
Description:
"UNUSED" macro was in wrong place for older versions of gcc
Solution:
Moved the "UNUSED" macro to the right of the H5FD_t type declaration and
the compiler was happy...
Platforms tested:
Solaris X86 2.5 (hatteras)
Diffstat (limited to 'src/H5FDfamily.c')
-rw-r--r-- | src/H5FDfamily.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDfamily.c b/src/H5FDfamily.c index 0211829..4f0b3d9 100644 --- a/src/H5FDfamily.c +++ b/src/H5FDfamily.c @@ -628,7 +628,7 @@ H5FD_family_cmp(const H5FD_t *_f1, const H5FD_t *_f2) *------------------------------------------------------------------------- */ static herr_t -H5FD_family_query(const UNUSED H5FD_t *_f, unsigned long *flags /* out */) +H5FD_family_query(const H5FD_t UNUSED *_f, unsigned long *flags /* out */) { herr_t ret_value=SUCCEED; |