summaryrefslogtreecommitdiff
path: root/foreign.c
diff options
context:
space:
mode:
Diffstat (limited to 'foreign.c')
-rw-r--r--foreign.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/foreign.c b/foreign.c
index ef028ba..6018487 100644
--- a/foreign.c
+++ b/foreign.c
@@ -259,7 +259,7 @@ static bool arg_list_add(av_alist *arg_list, Value val, Type *type, Location whe
break;
case BUILTIN_VARARGS:
arr_foreach(val.varargs, VarArg, arg) {
- arg_list_add(arg_list, arg->val, arg->type, where);
+ arg_list_add(arg_list, arg->val, arg->type, where);
}
break;
}