# HG changeset patch # User zas_ # Date 1235603048 0 # Node ID 2b78c7198fbf4d23b880ec114f7a5eb9d6236403 # Parent b93b39fb30c98935ee3cabd1362924a0d56e1478 Silent a minor warning. diff -r b93b39fb30c9 -r 2b78c7198fbf src/rcfile.c --- a/src/rcfile.c Wed Feb 25 21:09:17 2009 +0000 +++ b/src/rcfile.c Wed Feb 25 23:04:08 2009 +0000 @@ -65,7 +65,7 @@ '"', 0 /* '"' is handled in g_markup_escape_text */ }; - gchar *escval1 = g_strescape(text ? text : "", no_quote_utf); + gchar *escval1 = g_strescape(text ? text : "", (gchar *) no_quote_utf); gchar *escval2 = g_markup_escape_text(escval1, -1); write_indent(str, indent); g_string_append_printf(str, "%s = \"%s\"\n", label, escval2);