summaryrefslogtreecommitdiff
path: root/xs_set.h
diff options
context:
space:
mode:
Diffstat (limited to 'xs_set.h')
-rw-r--r--xs_set.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs_set.h b/xs_set.h
index 94c2b84..f6b65aa 100644
--- a/xs_set.h
+++ b/xs_set.h
@@ -47,7 +47,7 @@ xs_list *xs_set_result(xs_set *s)
47void xs_set_free(xs_set *s) 47void xs_set_free(xs_set *s)
48/* frees a set, dropping the list */ 48/* frees a set, dropping the list */
49{ 49{
50 free(xs_set_result(s)); 50 xs_free(xs_set_result(s));
51} 51}
52 52
53 53