mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-20 07:38:54 +02:00
The fallback parameter to g_convert_with_fallback() should be const
This patch makes it so.
This commit is contained in:
@@ -808,7 +808,7 @@ g_convert_with_fallback (const gchar *str,
|
|||||||
gssize len,
|
gssize len,
|
||||||
const gchar *to_codeset,
|
const gchar *to_codeset,
|
||||||
const gchar *from_codeset,
|
const gchar *from_codeset,
|
||||||
gchar *fallback,
|
const gchar *fallback,
|
||||||
gsize *bytes_read,
|
gsize *bytes_read,
|
||||||
gsize *bytes_written,
|
gsize *bytes_written,
|
||||||
GError **error)
|
GError **error)
|
||||||
|
@@ -79,7 +79,7 @@ gchar* g_convert_with_fallback (const gchar *str,
|
|||||||
gssize len,
|
gssize len,
|
||||||
const gchar *to_codeset,
|
const gchar *to_codeset,
|
||||||
const gchar *from_codeset,
|
const gchar *from_codeset,
|
||||||
gchar *fallback,
|
const gchar *fallback,
|
||||||
gsize *bytes_read,
|
gsize *bytes_read,
|
||||||
gsize *bytes_written,
|
gsize *bytes_written,
|
||||||
GError **error) G_GNUC_MALLOC;
|
GError **error) G_GNUC_MALLOC;
|
||||||
|
Reference in New Issue
Block a user