diff options
Diffstat (limited to 'src/utils/slist.c')
-rw-r--r-- | src/utils/slist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/slist.c b/src/utils/slist.c index e0c1a44..a606977 100644 --- a/src/utils/slist.c +++ b/src/utils/slist.c @@ -32,7 +32,7 @@ b_slist_append(b_slist_t *l, void *data) void -b_slist_free_full(b_slist_t *l, void (*free_func)(void *ptr)) +b_slist_free_full(b_slist_t *l, b_free_func_t free_func) { while (l != NULL) { b_slist_t *tmp = l->next; |