Fix compilation warning: use const *gchar variable

https://bugzilla.gnome.org/show_bug.cgi?id=605090
This commit is contained in:
Javier Jardón 2010-01-04 11:47:40 +01:00
parent c1cddb2b24
commit aa63be61d9

View File

@ -3697,7 +3697,7 @@ separate_uline_pattern (const gchar *str,
gchar **pattern)
{
gboolean underscore;
gchar *src;
const gchar *src;
gchar *dest;
gchar *pattern_dest;
@ -3714,7 +3714,7 @@ separate_uline_pattern (const gchar *str,
while (*src)
{
gunichar c;
gchar *next_src;
const gchar *next_src;
c = g_utf8_get_char (src);
if (c == (gunichar)-1)