Cast to const char *, not char *. (#138153, Nikolai Weibull)

2006-12-11  Matthias Clasen  <mclasen@redhat.com>

        * glib/gunicode.h (g_utf8_next_char): Cast to const char *,
        not char *.  (#138153, Nikolai Weibull)
This commit is contained in:
Matthias Clasen 2006-12-11 14:17:14 +00:00 committed by Matthias Clasen
parent cf7b313f75
commit 15df020ddd
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-12-11 Matthias Clasen <mclasen@redhat.com>
* glib/gunicode.h (g_utf8_next_char): Cast to const char *,
not char *. (#138153, Nikolai Weibull)
Wed Nov 22 16:09:13 2006 Tim Janik <timj@gtk.org>
* glib/gmacros.h: added G_GNUC_MAY_ALIAS, suggested by Mathias

View File

@ -251,7 +251,7 @@ gunichar *g_unicode_canonical_decomposition (gunichar ch,
*/
GLIB_VAR const gchar * const g_utf8_skip;
#define g_utf8_next_char(p) (char *)((p) + g_utf8_skip[*(guchar *)(p)])
#define g_utf8_next_char(p) (char *)((p) + g_utf8_skip[*(const guchar *)(p)])
gunichar g_utf8_get_char (const gchar *p);
gunichar g_utf8_get_char_validated (const gchar *p,