mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-22 00:48:53 +02:00
ginvoke: Fix signedness of variable in closure marshaller
Signed-off-by: Philip Withnall <pwithnall@gnome.org> Helps: #3155
This commit is contained in:
@@ -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;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user