mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-17 07:30:21 +02:00
gifunctioninfo: Fix int signedness in APIs
Signed-off-by: Philip Withnall <pwithnall@gnome.org> Helps: #3155
This commit is contained in:
@@ -256,9 +256,9 @@ gi_invoke_error_quark (void)
|
||||
gboolean
|
||||
gi_function_info_invoke (GIFunctionInfo *info,
|
||||
const GIArgument *in_args,
|
||||
int n_in_args,
|
||||
gsize n_in_args,
|
||||
const GIArgument *out_args,
|
||||
int n_out_args,
|
||||
gsize n_out_args,
|
||||
GIArgument *return_value,
|
||||
GError **error)
|
||||
{
|
||||
|
@@ -87,9 +87,9 @@ typedef enum
|
||||
GI_AVAILABLE_IN_ALL
|
||||
gboolean gi_function_info_invoke (GIFunctionInfo *info,
|
||||
const GIArgument *in_args,
|
||||
int n_in_args,
|
||||
gsize n_in_args,
|
||||
const GIArgument *out_args,
|
||||
int n_out_args,
|
||||
gsize n_out_args,
|
||||
GIArgument *return_value,
|
||||
GError **error);
|
||||
|
||||
|
Reference in New Issue
Block a user