diff options
author | Tim Janik <timj@src.gnome.org> | 1998-03-01 23:51:59 +0000 |
---|---|---|
committer | Tim Janik <timj@src.gnome.org> | 1998-03-01 23:51:59 +0000 |
commit | 172d6433a7520e7d78439faab7786dc506de75dd (patch) | |
tree | d377c0428542baae079aa3dd6291badcb6d1e54f /gdk/gdkglobals.c | |
parent | 6ef73ebac002d67eb57996370a38f2bea54283b5 (diff) | |
download | gtk+-172d6433a7520e7d78439faab7786dc506de75dd.tar.gz |
variable declaration have to have the same type as their
export counterparts. sopwith are you reading compiler warnings?
-timj
Diffstat (limited to 'gdk/gdkglobals.c')
-rw-r--r-- | gdk/gdkglobals.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk/gdkglobals.c b/gdk/gdkglobals.c index d3c967860b..367df7d83b 100644 --- a/gdk/gdkglobals.c +++ b/gdk/gdkglobals.c @@ -47,6 +47,6 @@ GdkDndGlobals gdk_dnd = {None,None,None, gchar *gdk_progname = NULL; gchar *gdk_progclass = NULL; gint gdk_error_code; -gboolean gdk_error_warnings = TRUE; -gboolean gdk_null_window_warnings = TRUE; +gint gdk_error_warnings = TRUE; +gint gdk_null_window_warnings = TRUE; GList *default_filters = NULL; |