summaryrefslogtreecommitdiffstats
path: root/src/H5P.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2003-08-08 18:57:44 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2003-08-08 18:57:44 (GMT)
commit8e9bed7d19b9d14fb15389a3938d18ff5b7fe8c8 (patch)
tree672cc178761226097e7c7b8d041f88b6a4d4361d /src/H5P.c
parent5155912a82993a7797b90a72fce39eee9e66a63e (diff)
downloadhdf5-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
Diffstat (limited to 'src/H5P.c')
-rw-r--r--src/H5P.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/H5P.c b/src/H5P.c
index 1f50d7b..729dc16 100644
--- a/src/H5P.c
+++ b/src/H5P.c
@@ -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 */