summaryrefslogtreecommitdiff
path: root/tanja.c
diff options
context:
space:
mode:
Diffstat (limited to 'tanja.c')
-rw-r--r--tanja.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tanja.c b/tanja.c
index 40cd4b6..79bf560 100644
--- a/tanja.c
+++ b/tanja.c
@@ -174,7 +174,7 @@ void tn_el_free(tn_el el) {
static inline tn_el el_newv(char t, va_list *va) {
if(t == TN_VT_AR || t == TN_VT_MAP)
- return va_arg(va, tn_el);
+ return va_arg(*va, tn_el);
tn_el a;
a.type = t;
switch(t) {