diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2008-10-28 03:19:31 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2008-10-28 03:19:31 (GMT) |
commit | 98bac0cfc0398f842d8c27509bf83c3ab5025166 (patch) | |
tree | 99a49ed11dc4c4caf76d4af6322744163a39586b | |
parent | a8e59673c037e3206cd558a8c981c6e4f4ec4e0d (diff) | |
download | hdf5-98bac0cfc0398f842d8c27509bf83c3ab5025166.zip hdf5-98bac0cfc0398f842d8c27509bf83c3ab5025166.tar.gz hdf5-98bac0cfc0398f842d8c27509bf83c3ab5025166.tar.bz2 |
[svn-r15974] Bug fix:
Compilation on all daily test platforms fails due to missing "(";
fixed.
Platforms tested:
co-login
kagiso with --with-default-api-version=v16 and
--with-default-api-version=v16 --disable-deprecated-symbols
compilation flags.
-rw-r--r-- | src/H5version.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5version.h b/src/H5version.h index 38b306d..e4d1856 100644 --- a/src/H5version.h +++ b/src/H5version.h @@ -21,7 +21,7 @@ #define _H5version_H /* Issue error if contradicting macros have been defined. */ -#if defined(H5_USE_16_API) || defined(H5_USE_16_API_DEFAULT)) && defined(H5_NO_DEPRECATED_SYMBOLS) +#if (defined(H5_USE_16_API) || defined(H5_USE_16_API_DEFAULT)) && defined(H5_NO_DEPRECATED_SYMBOLS) #error "Can't choose old API versions when deprecated APIs are disabled" #endif /* (defined(H5_USE_16_API) || defined(H5_USE_16_API_DEFAULT)) && defined(H5_NO_DEPRECATED_SYMBOLS) */ |