From 5c25be11a293fc6458278b4cc41795046ac7d438 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Wed, 29 Nov 2000 11:35:19 -0500 Subject: [svn-r3018] Purpose: Bug fix Description: Had incorrect logic in testing for file families when v1.2 compatibility was enabled.. Solution: Corrected to match non-compatibility code. Platforms tested: Linux 2.2.16-3smp (eirene) --- test/istore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/istore.c b/test/istore.c index e0448c4..3f266c8 100644 --- a/test/istore.c +++ b/test/istore.c @@ -563,7 +563,7 @@ main(int argc, char *argv[]) * allocated a whole bunch of data. */ #ifdef H5_WANT_H5_V1_2_COMPAT - if (H5F_LOW_FAMILY!=H5Pget_driver(fapl)) { + if (H5F_LOW_FAMILY==H5Pget_driver(fapl)) { #else /* H5_WANT_H5_V1_2_COMPAT */ if (H5FD_FAMILY==H5Pget_driver(fapl)) { #endif /* H5_WANT_H5_V1_2_COMPAT */ -- cgit v0.12