summaryrefslogtreecommitdiffstats
path: root/test/istore.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-11-29 16:35:19 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-11-29 16:35:19 (GMT)
commit5c25be11a293fc6458278b4cc41795046ac7d438 (patch)
tree3794440e2000da2f67abda0c0953e04540e71f9d /test/istore.c
parent6efa8215552705c9076079f5368cd64582f93918 (diff)
downloadhdf5-5c25be11a293fc6458278b4cc41795046ac7d438.zip
hdf5-5c25be11a293fc6458278b4cc41795046ac7d438.tar.gz
hdf5-5c25be11a293fc6458278b4cc41795046ac7d438.tar.bz2
[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)
Diffstat (limited to 'test/istore.c')
-rw-r--r--test/istore.c2
1 files changed, 1 insertions, 1 deletions
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 */