Fix warning: cast to gchar*

This commit is contained in:
Javier Jardón 2009-10-28 23:49:55 +01:00
parent 0f78a6c89a
commit d76287c94b

View File

@ -170,7 +170,7 @@ gdk_wcstombs (const GdkWChar *src)
* We must copy the string into an area allocated by glib, because
* the string 'tpr.value' must be freed by XFree().
*/
mbstr = g_strdup(tpr.value);
mbstr = g_strdup((gchar *)tpr.value);
XFree (tpr.value);
}
else