diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-11-29 16:35:19 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-11-29 16:35:19 (GMT) |
commit | 5c25be11a293fc6458278b4cc41795046ac7d438 (patch) | |
tree | 3794440e2000da2f67abda0c0953e04540e71f9d /test/istore.c | |
parent | 6efa8215552705c9076079f5368cd64582f93918 (diff) | |
download | hdf5-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.c | 2 |
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 */ |