diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2016-01-27 16:48:37 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2016-01-27 16:48:37 (GMT) |
commit | ad617b9bfca90714119cfce3f1d02068a613f198 (patch) | |
tree | b49788cb15bdcff13699853421fbdc65f84f45b2 /src | |
parent | 20a3462089f9a70809267552eec392abfaa60361 (diff) | |
download | hdf5-ad617b9bfca90714119cfce3f1d02068a613f198.zip hdf5-ad617b9bfca90714119cfce3f1d02068a613f198.tar.gz hdf5-ad617b9bfca90714119cfce3f1d02068a613f198.tar.bz2 |
[svn-r28982] Fixed H5ST_dump signature problem and added st to the list of
packages with extra debugging output.
Tested on: 64-bit Ubuntu 15.10 (Linux 4.2.0 x86_64) gcc 5.2.1
serial autotools
Diffstat (limited to 'src')
-rw-r--r-- | src/H5STprivate.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5STprivate.h b/src/H5STprivate.h index 892f04a..9b49b07 100644 --- a/src/H5STprivate.h +++ b/src/H5STprivate.h @@ -58,7 +58,9 @@ H5_DLL H5ST_ptr_t H5ST_findfirst(H5ST_tree_t *p); H5_DLL H5ST_ptr_t H5ST_findnext(H5ST_ptr_t p); H5_DLL void *H5ST_remove(H5ST_tree_t *root, const char *s); H5_DLL herr_t H5ST_delete(H5ST_tree_t *root, H5ST_ptr_t p); -H5_DLL herr_t H5ST_dump(H5ST_ptr_t p); +#ifdef H5ST_DEBUG +H5_DLL herr_t H5ST_dump(H5ST_tree_t *tree); +#endif /* H5ST_DEBUG */ #endif /* _H5STprivate_H */ |