From 238b9488c146ea4eb92c97071f6cce39383b6627 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 11 Jun 2002 12:21:12 -0500 Subject: [svn-r5590] Purpose: Bug Fix Description: The test for compression needed to be reversed. Solution: Instead of "!(defined...) used just "(defined..." Platforms tested: Modi4 --- perform/zip_perf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v0.12