summaryrefslogtreecommitdiffstats
path: root/perform/zip_perf.c
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2002-06-11 17:21:12 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2002-06-11 17:21:12 (GMT)
commit238b9488c146ea4eb92c97071f6cce39383b6627 (patch)
tree0279ebd00547efdba56c00727964d052def5a4db /perform/zip_perf.c
parentd81a04ff48eb0296ef181454f7bf2cdaa2a49eba (diff)
downloadhdf5-238b9488c146ea4eb92c97071f6cce39383b6627.zip
hdf5-238b9488c146ea4eb92c97071f6cce39383b6627.tar.gz
hdf5-238b9488c146ea4eb92c97071f6cce39383b6627.tar.bz2
[svn-r5590] Purpose:
Bug Fix Description: The test for compression needed to be reversed. Solution: Instead of "!(defined...) used just "(defined..." Platforms tested: Modi4
Diffstat (limited to 'perform/zip_perf.c')
-rw-r--r--perform/zip_perf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/perform/zip_perf.c b/perform/zip_perf.c
index f5d410c..614f5a1 100644
--- a/perform/zip_perf.c
+++ b/perform/zip_perf.c
@@ -28,7 +28,7 @@
#include "hdf5.h"
#include "h5tools_utils.h"
-#if !(defined(H5_HAVE_COMPRESS2) && defined(H5_HAVE_ZLIB_H) && defined(H5_HAVE_LIBZ))
+#if defined(H5_HAVE_COMPRESS2) && defined(H5_HAVE_ZLIB_H) && defined(H5_HAVE_LIBZ)
#include <zlib.h>