Mercurial > geeqie.yaz
changeset 1326:2b78c7198fbf
Silent a minor warning.
author | zas_ |
---|---|
date | Wed, 25 Feb 2009 23:04:08 +0000 |
parents | b93b39fb30c9 |
children | 15208b140481 |
files | src/rcfile.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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);