diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-09-16 13:54:23 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-09-16 13:54:23 (GMT) |
commit | 2385b2b0ad832825bd9009237149e1581326c044 (patch) | |
tree | ff68ed2b81beec4e05f1c7512fca9636536ee85d /test/titerate.c | |
parent | cc0165a973d17386cd4983ac1d0394ad4feb8034 (diff) | |
download | hdf5-2385b2b0ad832825bd9009237149e1581326c044.zip hdf5-2385b2b0ad832825bd9009237149e1581326c044.tar.gz hdf5-2385b2b0ad832825bd9009237149e1581326c044.tar.bz2 |
[svn-r27800] Minor warning fixes in the library tests.
Tested on: jam (too minor for h5committest)
Diffstat (limited to 'test/titerate.c')
-rw-r--r-- | test/titerate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/titerate.c b/test/titerate.c index fff13f1..98428ea 100644 --- a/test/titerate.c +++ b/test/titerate.c @@ -704,7 +704,7 @@ static void test_grp_memb_funcs(hid_t fapl) char dataset_name[NAMELEN]; /* dataset name */ ssize_t name_len; /* Length of object's name */ H5G_info_t ginfo; /* Buffer for querying object's info */ - herr_t ret; /* Generic return value */ + herr_t ret = SUCCEED; /* Generic return value */ /* Output message about test being performed */ MESSAGE(5, ("Testing Group Member Information Functionality\n")); |