diff options
author | Benjamin Otte <otte@redhat.com> | 2016-02-03 22:50:03 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2016-02-03 22:53:22 +0100 |
commit | be6f65a08e65da9af4c76b380adf82926568d202 (patch) | |
tree | 0d00fb2a922c2e4793540d88377fd2884f885898 /gtk/gtkimmodule.c | |
parent | 429bec54e5b6c276cbdc5abad80ba9c21456ed72 (diff) | |
download | gtk+-be6f65a08e65da9af4c76b380adf82926568d202.tar.gz |
immodule: Use correct sign for function prototype
Diffstat (limited to 'gtk/gtkimmodule.c')
-rw-r--r-- | gtk/gtkimmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); \ |