Replace all uses of G_VA_COPY with Standard C va_copy

Signed-off-by: Simon McVittie <smcv@collabora.com>
This commit is contained in:
Simon McVittie
2022-10-21 14:48:47 +01:00
parent b8f37a543c
commit 65016fddd9
8 changed files with 56 additions and 56 deletions

View File

@@ -1614,7 +1614,7 @@ g_cclosure_marshal_generic_va (GClosure *closure,
args[n_args-1] = &closure->data;
}
G_VA_COPY (args_copy, args_list);
va_copy (args_copy, args_list);
/* Box non-primitive arguments */
for (i = 0; i < n_params; i++)