diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-08 18:57:44 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-08 18:57:44 (GMT) |
commit | 8e9bed7d19b9d14fb15389a3938d18ff5b7fe8c8 (patch) | |
tree | 672cc178761226097e7c7b8d041f88b6a4d4361d | |
parent | 5155912a82993a7797b90a72fce39eee9e66a63e (diff) | |
download | hdf5-8e9bed7d19b9d14fb15389a3938d18ff5b7fe8c8.zip hdf5-8e9bed7d19b9d14fb15389a3938d18ff5b7fe8c8.tar.gz hdf5-8e9bed7d19b9d14fb15389a3938d18ff5b7fe8c8.tar.bz2 |
[svn-r7304] Purpose:
Code cleanup
Description:
Remove some unused code and correct some error strings
Platforms tested:
h5committested
-rw-r--r-- | src/H5P.c | 8 |
1 files changed, 2 insertions, 6 deletions
@@ -213,17 +213,13 @@ H5P_init_interface(void) FUNC_ENTER_NOINIT(H5P_init_interface); - /* Make certain IDs are initialized */ - if (ret_value < 0) - HGOTO_ERROR(H5E_ATOM, H5E_CANTINIT, FAIL, "unable to initialize atom group"); - /* * Initialize the Generic Property class & object groups. */ if (H5I_init_group(H5I_GENPROP_CLS, H5I_GENPROPCLS_HASHSIZE, 0, (H5I_free_t)H5P_close_class) < 0) - HGOTO_ERROR(H5E_ATOM, H5E_CANTINIT, FAIL, "unable to initialize atom group"); + HGOTO_ERROR(H5E_ATOM, H5E_CANTINIT, FAIL, "unable to initialize ID group"); if (H5I_init_group(H5I_GENPROP_LST, H5I_GENPROPOBJ_HASHSIZE, 0, (H5I_free_t)H5P_close) < 0) - HGOTO_ERROR(H5E_ATOM, H5E_CANTINIT, FAIL, "unable to initialize atom group"); + HGOTO_ERROR(H5E_ATOM, H5E_CANTINIT, FAIL, "unable to initialize ID group"); /* Create root property list class */ |