diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2016-08-18 19:09:42 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2016-08-18 19:09:42 (GMT) |
commit | 00c508dc682d76328f0374fbbd5414c18fb620e6 (patch) | |
tree | 5c53a2f93c68202e9cf1186a59dbd2054604694f /src | |
parent | 79b14e8b4de6e260b8a0c44629ecd3ab80eec65f (diff) | |
download | hdf5-00c508dc682d76328f0374fbbd5414c18fb620e6.zip hdf5-00c508dc682d76328f0374fbbd5414c18fb620e6.tar.gz hdf5-00c508dc682d76328f0374fbbd5414c18fb620e6.tar.bz2 |
[svn-r30303] Fixed unbalanced parentheses in H5F_SAME_SHARED macro.
This version of the macro isn't used anywhere in the
HDF5 source.
Tested on: 64-bit Ubuntu Linux 16.04 LTS w/ gcc 5.4.0
Autotools serial
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Fprivate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Fprivate.h b/src/H5Fprivate.h index 8c27edd..b5c24e9 100644 --- a/src/H5Fprivate.h +++ b/src/H5Fprivate.h @@ -279,7 +279,7 @@ #define H5F_ACTUAL_NAME(F) ((F)->actual_name) #define H5F_EXTPATH(F) ((F)->extpath) #define H5F_SHARED(F) ((F)->shared) -#define H5F_SAME_SHARED(F1, F2) ((F1)->shared == (F2)->shared)) +#define H5F_SAME_SHARED(F1, F2) ((F1)->shared == (F2)->shared) #define H5F_NOPEN_OBJS(F) ((F)->nopen_objs) #define H5F_INCR_NOPEN_OBJS(F) ((F)->nopen_objs++) #define H5F_DECR_NOPEN_OBJS(F) ((F)->nopen_objs--) |