diff --git a/lib/glibcompat.c b/lib/glibcompat.c
index 48a2409e5..d0f8d5b4f 100644
a
|
b
|
g_list_free_full (GList * list, GDestroyNotify free_func) |
104 | 104 | * Since: 2.64 |
105 | 105 | */ |
106 | 106 | void |
107 | | g_clear_slist (GSList ** slist_ptr, GDestroyNotify destroy) |
| 107 | (g_clear_slist) (GSList ** slist_ptr, GDestroyNotify destroy) |
108 | 108 | { |
109 | 109 | GSList *slist; |
110 | 110 | |
… |
… |
g_clear_slist (GSList ** slist_ptr, GDestroyNotify destroy) |
135 | 135 | * Since: 2.64 |
136 | 136 | */ |
137 | 137 | void |
138 | | g_clear_list (GList ** list_ptr, GDestroyNotify destroy) |
| 138 | (g_clear_list) (GList ** list_ptr, GDestroyNotify destroy) |
139 | 139 | { |
140 | 140 | GList *list; |
141 | 141 | |