From 8e9bed7d19b9d14fb15389a3938d18ff5b7fe8c8 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Fri, 8 Aug 2003 13:57:44 -0500 Subject: [svn-r7304] Purpose: Code cleanup Description: Remove some unused code and correct some error strings Platforms tested: h5committested --- src/H5P.c | 8 ++------ 1 file 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 */ -- cgit v0.12