From 79353d0abbf21d85e174158e0185c0c72b7424ea Mon Sep 17 00:00:00 2001 From: Rodrigo Kumpera Date: Wed, 24 Oct 2012 13:39:59 -0400 Subject: Fix the linux build as it does check even from private glib symbols. --- eglib/src/giconv.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eglib/src/giconv.c b/eglib/src/giconv.c index 6fc6e06aaea..2f44336aa0b 100644 --- a/eglib/src/giconv.c +++ b/eglib/src/giconv.c @@ -887,7 +887,7 @@ g_utf8_to_ucs4_fast (const gchar *str, glong len, glong *items_written) } static gunichar2 * -g_utf8_to_utf16_general (const gchar *str, glong len, glong *items_read, glong *items_written, gboolean include_nuls, GError **err) +eg_utf8_to_utf16_general (const gchar *str, glong len, glong *items_read, glong *items_written, gboolean include_nuls, GError **err) { gunichar2 *outbuf, *outptr; size_t outlen = 0; @@ -966,13 +966,13 @@ g_utf8_to_utf16_general (const gchar *str, glong len, glong *items_read, glong * gunichar2 * g_utf8_to_utf16 (const gchar *str, glong len, glong *items_read, glong *items_written, GError **err) { - return g_utf8_to_utf16_general (str, len, items_read, items_written, FALSE, err); + return eg_utf8_to_utf16_general (str, len, items_read, items_written, FALSE, err); } gunichar2 * eg_utf8_to_utf16_with_nuls (const gchar *str, glong len, glong *items_read, glong *items_written, GError **err) { - return g_utf8_to_utf16_general (str, len, items_read, items_written, TRUE, err); + return eg_utf8_to_utf16_general (str, len, items_read, items_written, TRUE, err); } gunichar * -- cgit v1.2.3