Skip to content

Commit

Permalink
Add static scope to sest_bucket_realloc and set_bucket_realloc_iterator.
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga committed Nov 14, 2019
1 parent 60d0ae4 commit 14a95ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/adt/source/adt_set.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ size_t set_size(set s)
return 0;
}

int set_bucket_realloc_iterator(set s, set_key key, set_value value, set_cb_iterate_args args)
static int set_bucket_realloc_iterator(set s, set_key key, set_value value, set_cb_iterate_args args)
{
set new_set = (set)args;

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

int set_bucket_realloc(set s)
static int set_bucket_realloc(set s)
{
struct set_type new_set;

Expand Down

0 comments on commit 14a95ce

Please sign in to comment.