[svn-r23370] Corrected macro name and removed optional function info in ERROR macro

This commit is contained in:
Allen Byrne 2013-03-18 17:00:24 -05:00
parent f2b142f6ed
commit 9a720f99fe
2 changed files with 2 additions and 2 deletions

View File

@ -447,7 +447,7 @@ fprintf(stderr, "%s: H5PL_table_used_g=%d, id=%d\n", FUNC, H5PL_table_used_g, (H
for(i=0; i<H5PL_table_used_g; i++) {
if((plugin_type == (H5PL_table_g[i]).pl_type) && (type_id == (H5PL_table_g[i]).pl_id)) {
if(NULL == (H5PL_get_plugin_info = H5PL_GET_LIB_FUNC((H5PL_table_g[i]).handle, "H5PL_get_plugin_info")))
HGOTO_ERROR(H5E_DATATYPE, H5E_CANTGET, FAIL, "can't get function: %s", H5PL_CLR_ERROR)
HGOTO_ERROR(H5E_DATATYPE, H5E_CANTGET, FAIL, "can't get function: H5PL_GET_LIB_FUNC")
if(NULL == (plugin_info = (*H5PL_get_plugin_info)()))
HGOTO_ERROR(H5E_DATATYPE, H5E_CANTGET, FAIL, "can't get plugin info")

View File

@ -76,7 +76,7 @@
#define H5PL_ERROR char *error
/* Clear error */
#define H5PL_CLR_ERR dlerror()
#define H5PL_CLR_ERROR dlerror()
/* Print error message */
#define H5PL_CHECK_ERR(R) { \