mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-31 06:13:29 +02:00
Fix compilation warning in ginvoke.c
This commit is contained in:
@@ -436,7 +436,7 @@ gi_cclosure_marshal_generic (GClosure *closure,
|
|||||||
if (ffi_prep_cif (&cif, FFI_DEFAULT_ABI, n_args, rtype, atypes) != FFI_OK)
|
if (ffi_prep_cif (&cif, FFI_DEFAULT_ABI, n_args, rtype, atypes) != FFI_OK)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
g_return_val_if_fail (rvalue, FALSE);
|
g_return_if_fail (rvalue != NULL);
|
||||||
ffi_call (&cif, marshal_data ? marshal_data : cc->callback, rvalue, args);
|
ffi_call (&cif, marshal_data ? marshal_data : cc->callback, rvalue, args);
|
||||||
|
|
||||||
if (return_gvalue && G_VALUE_TYPE (return_gvalue))
|
if (return_gvalue && G_VALUE_TYPE (return_gvalue))
|
||||||
|
Reference in New Issue
Block a user