ginvoke: Fix signedness of variable in closure marshaller

Signed-off-by: Philip Withnall <pwithnall@gnome.org>

Helps: #3155
This commit is contained in:
Philip Withnall
2024-01-05 13:08:39 +00:00
parent 5a56518852
commit 8e5ff50dd4

View File

@@ -278,10 +278,10 @@ gi_cclosure_marshal_generic (GClosure *closure,
GIArgument return_ffi_value = { 0, }; GIArgument return_ffi_value = { 0, };
ffi_type *rtype; ffi_type *rtype;
void *rvalue; void *rvalue;
int n_args; unsigned int n_args;
ffi_type **atypes; ffi_type **atypes;
void **args; void **args;
int i; unsigned int i;
ffi_cif cif; ffi_cif cif;
GCClosure *cc = (GCClosure*) closure; GCClosure *cc = (GCClosure*) closure;