The fallback parameter to g_convert_with_fallback() should be const

This patch makes it so.
This commit is contained in:
Benjamin Otte 2010-03-16 16:34:50 +01:00
parent 751feb916a
commit 2295ba857f
2 changed files with 2 additions and 2 deletions

View File

@ -808,7 +808,7 @@ g_convert_with_fallback (const gchar *str,
gssize len,
const gchar *to_codeset,
const gchar *from_codeset,
gchar *fallback,
const gchar *fallback,
gsize *bytes_read,
gsize *bytes_written,
GError **error)

View File

@ -79,7 +79,7 @@ gchar* g_convert_with_fallback (const gchar *str,
gssize len,
const gchar *to_codeset,
const gchar *from_codeset,
gchar *fallback,
const gchar *fallback,
gsize *bytes_read,
gsize *bytes_written,
GError **error) G_GNUC_MALLOC;