From be6f65a08e65da9af4c76b380adf82926568d202 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Wed, 3 Feb 2016 22:50:03 +0100 Subject: [PATCH] immodule: Use correct sign for function prototype --- gtk/gtkimmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkimmodule.c b/gtk/gtkimmodule.c index 47e6348ebe..97021da3f2 100644 --- a/gtk/gtkimmodule.c +++ b/gtk/gtkimmodule.c @@ -491,7 +491,7 @@ gtk_im_module_initialize (void) const GtkIMContextInfo **contexts; \ int n_contexts; \ extern void _gtk_immodule_ ## m ## _list (const GtkIMContextInfo ***contexts, \ - guint *n_contexts); \ + int *n_contexts); \ extern void _gtk_immodule_ ## m ## _init (GTypeModule *module); \ extern void _gtk_immodule_ ## m ## _exit (void); \ extern GtkIMContext *_gtk_immodule_ ## m ## _create (const gchar *context_id); \