summaryrefslogtreecommitdiffstats
path: root/src/H5G.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5G.c')
-rw-r--r--src/H5G.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5G.c b/src/H5G.c
index 675b166..0fa2c1c 100644
--- a/src/H5G.c
+++ b/src/H5G.c
@@ -135,7 +135,7 @@ H5FL_DEFINE(H5G_t);
H5FL_DEFINE(H5G_shared_t);
/* Declare the free list to manage H5_obj_t's */
-H5FL_DEFINE_STATIC(H5_obj_t);
+H5FL_DEFINE(H5_obj_t);
/* Private prototypes */
@@ -1933,7 +1933,7 @@ H5G_visit(hid_t loc_id, const char *group_name, H5_index_t idx_type,
udata.path_buf_size = 1;
udata.curr_path_len = 0;
- /* Create skip list to store reference path information */
+ /* Create skip list to store visited object information */
if((udata.visited = H5SL_create(H5SL_TYPE_OBJ, 0.5, (size_t)16)) == NULL)
HGOTO_ERROR(H5E_SYM, H5E_CANTCREATE, FAIL, "can't create skip list for visited objects")