diff options
author | Robb Matzke <matzke@llnl.gov> | 1997-09-15 22:21:15 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1997-09-15 22:21:15 (GMT) |
commit | a072c7ee66d17dc39c19d14c65d6d0508bce0a2b (patch) | |
tree | f2bf445b6ebf5217ebd97b356eb9aeccf2615375 | |
parent | ca22dcc103f62a8eec0c8a97cf1c02360677a23b (diff) | |
download | hdf5-a072c7ee66d17dc39c19d14c65d6d0508bce0a2b.zip hdf5-a072c7ee66d17dc39c19d14c65d6d0508bce0a2b.tar.gz hdf5-a072c7ee66d17dc39c19d14c65d6d0508bce0a2b.tar.bz2 |
[svn-r88] Fixed an error check.
-rw-r--r-- | test/th5d.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/th5d.c b/test/th5d.c index b977ce7..6a26250 100644 --- a/test/th5d.c +++ b/test/th5d.c @@ -189,7 +189,7 @@ static void test_h5d_basic_read(void) CHECK(oid1,FAIL,"H5Mfind_name"); did1=H5Maccess(oid1); - CHECK(sid1,FAIL,"H5Maccess"); + CHECK(did1,FAIL,"H5Maccess"); ret=H5Dget_info(did1,&tid1,&sid1); CHECK(ret,FAIL,"H5Pset_space"); |