aboutsummaryrefslogtreecommitdiff
path: root/grammar.c
diff options
context:
space:
mode:
Diffstat (limited to 'grammar.c')
-rw-r--r--grammar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/grammar.c b/grammar.c
index f287f46..b980196 100644
--- a/grammar.c
+++ b/grammar.c
@@ -119,8 +119,8 @@ void pop_backrefs(grammar_t *g, size_t count)
backref_t *b = g->firstbackref;
g->firstbackref = b->next;
check(b, "Attempt to pop %ld more backrefs than there are", count);
- xfree((void**)&b->op);
- xfree((void**)&b);
+ xfree(&b->op);
+ xfree(&b);
}
}