Skip to content

Commit 14a95ce

Browse files
committed
Add static scope to sest_bucket_realloc and set_bucket_realloc_iterator.
1 parent 60d0ae4 commit 14a95ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/adt/source/adt_set.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ size_t set_size(set s)
8686
return 0;
8787
}
8888

89-
int set_bucket_realloc_iterator(set s, set_key key, set_value value, set_cb_iterate_args args)
89+
static int set_bucket_realloc_iterator(set s, set_key key, set_value value, set_cb_iterate_args args)
9090
{
9191
set new_set = (set)args;
9292

@@ -113,7 +113,7 @@ int set_bucket_realloc_iterator(set s, set_key key, set_value value, set_cb_iter
113113
return 1;
114114
}
115115

116-
int set_bucket_realloc(set s)
116+
static int set_bucket_realloc(set s)
117117
{
118118
struct set_type new_set;
119119

0 commit comments

Comments
 (0)