diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-10-16 22:53:56 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-10-16 22:53:56 (GMT) |
commit | 84bf19bec42e2c53114727df2e239aa3fecb1071 (patch) | |
tree | a16377205eda598abfc6d37b2a68113dd8060816 /test | |
parent | 775bd09974b4681672bce3c1a10948bad5d482da (diff) | |
download | hdf5-84bf19bec42e2c53114727df2e239aa3fecb1071.zip hdf5-84bf19bec42e2c53114727df2e239aa3fecb1071.tar.gz hdf5-84bf19bec42e2c53114727df2e239aa3fecb1071.tar.bz2 |
[svn-r12767] Description:
Code cleanup to improve formatting & reduce compiler warnings.
Tested on:
Linux/32 2.6 (chicago)
Linux/64 2.6 (chicago2)
Diffstat (limited to 'test')
-rw-r--r-- | test/tattr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/tattr.c b/test/tattr.c index a6e56a9..ed60126 100644 --- a/test/tattr.c +++ b/test/tattr.c @@ -1643,7 +1643,7 @@ test_attr_dtype_shared(hid_t fapl) /* Check reference count on named datatype */ ret=H5Gget_objinfo(file_id,TYPE1_NAME,0,&statbuf); CHECK(ret, FAIL, "H5Gget_objinfo"); - VERIFY(statbuf.nlink, 3, "H5Aopen_name"); + VERIFY(statbuf.nlink, 3, "H5Gget_objinfo"); /* Unlink the dataset */ ret=H5Gunlink(file_id,DSET1_NAME); @@ -1652,7 +1652,7 @@ test_attr_dtype_shared(hid_t fapl) /* Check reference count on named datatype */ ret=H5Gget_objinfo(file_id,TYPE1_NAME,0,&statbuf); CHECK(ret, FAIL, "H5Gget_objinfo"); - VERIFY(statbuf.nlink, 1, "H5Gunlink"); + VERIFY(statbuf.nlink, 1, "H5Gget_objinfo"); /* Unlink the named datatype */ ret=H5Gunlink(file_id,TYPE1_NAME); @@ -1664,7 +1664,7 @@ test_attr_dtype_shared(hid_t fapl) /* Check size of file */ filesize=h5_get_file_size(FILENAME); - VERIFY(filesize, empty_filesize, "H5Fclose"); + VERIFY(filesize, empty_filesize, "h5_get_file_size"); } /* test_attr_dtype_shared() */ /**************************************************************** |