diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2010-05-15 04:23:44 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2010-05-15 04:23:44 (GMT) |
commit | e870eca72ee4c8a34c4abbffe7ff11342a74a980 (patch) | |
tree | b90b336b268eb699800abcb2fc7467091628dfbe /hl | |
parent | d7a89d6c7b67932c9c96e3ddc799605482391fdc (diff) | |
download | hdf5-e870eca72ee4c8a34c4abbffe7ff11342a74a980.zip hdf5-e870eca72ee4c8a34c4abbffe7ff11342a74a980.tar.gz hdf5-e870eca72ee4c8a34c4abbffe7ff11342a74a980.tar.bz2 |
[svn-r18819] Maintenance: fixed typo in a comment line and formatting.
Platforms tested: jam (minor fix)
Diffstat (limited to 'hl')
-rw-r--r-- | hl/test/test_ds.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/hl/test/test_ds.c b/hl/test/test_ds.c index 2477bc0..540e7e2 100644 --- a/hl/test/test_ds.c +++ b/hl/test/test_ds.c @@ -1264,11 +1264,11 @@ static int test_detachscales(void) if(H5Dclose(dsid) < 0) goto out; } - /* Check that attribute "REFERENCE_LIST" doesn't exist anymore */ - if(H5Aexists(did, DIMENSION_LIST)!= 0) - goto out; - if(H5Dclose(did) < 0) - goto out; + /* Check that attribute "DIMENSION_LIST" doesn't exist anymore */ + if(H5Aexists(did, DIMENSION_LIST)!= 0) + goto out; + if(H5Dclose(did) < 0) + goto out; } else goto out; |