mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-10-03 20:29:21 +02:00
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:
committed by
Matthias Clasen
parent
cf7b313f75
commit
15df020ddd
@@ -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,
|
||||
|
Reference in New Issue
Block a user