summaryrefslogtreecommitdiffstats
path: root/src/H5version.h
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2008-10-28 03:19:31 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2008-10-28 03:19:31 (GMT)
commit98bac0cfc0398f842d8c27509bf83c3ab5025166 (patch)
tree99a49ed11dc4c4caf76d4af6322744163a39586b /src/H5version.h
parenta8e59673c037e3206cd558a8c981c6e4f4ec4e0d (diff)
downloadhdf5-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.
Diffstat (limited to 'src/H5version.h')
-rw-r--r--src/H5version.h2
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) */