summaryrefslogtreecommitdiffstats
path: root/gc.c
diff options
context:
space:
mode:
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gc.c b/gc.c
index d524c984..f17a4b47 100644
--- a/gc.c
+++ b/gc.c
@@ -639,7 +639,7 @@ static void call_finals(void)
for (f = old_list; f; f = next) {
next = f->next;
- if ((f->obj_type & REACHABLE) != 0) {
+ if ((f->obj_type & REACHABLE) == 0) {
funcall1(f->fun, f->obj);
free(f);
} else {