diff options
Diffstat (limited to 'gdk/x11/gdkfont-x11.c')
-rw-r--r-- | gdk/x11/gdkfont-x11.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdk/x11/gdkfont-x11.c b/gdk/x11/gdkfont-x11.c index 63de7162dd..1f4b76c1c7 100644 --- a/gdk/x11/gdkfont-x11.c +++ b/gdk/x11/gdkfont-x11.c @@ -137,7 +137,7 @@ gdk_font_load (const gchar *font_name) } static char * -gdk_font_charset_for_locale () +gdk_font_charset_for_locale (void) { static char *charset_map[][2] = { { "ANSI_X3.4-1968", "iso8859-1" }, @@ -154,7 +154,7 @@ gdk_font_charset_for_locale () { "UTF-8", "iso8859-1" } }; - char *codeset; + const char *codeset; char *result = NULL; int i; |