summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-08-22 02:00:14 -0400
committerMatthias Clasen <mclasen@redhat.com>2021-08-22 02:28:28 -0400
commitfe3175fbdc5ec26a5123a5aa9383088165c05bf4 (patch)
treed387c385765877e71f3b9c131dad5abc8b0529e6
parent89f8a4e0631434131b8d7308a2c0b22c5bbda5c7 (diff)
downloadpango-fe3175fbdc5ec26a5123a5aa9383088165c05bf4.tar.gz
glyphstring: Silence compiler warnings
-rw-r--r--pango/glyphstring.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pango/glyphstring.c b/pango/glyphstring.c
index e937549a..89dec64e 100644
--- a/pango/glyphstring.c
+++ b/pango/glyphstring.c
@@ -391,7 +391,7 @@ pango_glyph_string_index_to_x (PangoGlyphString *glyphs,
int cluster_chars = 0;
int cluster_offset = 0;
- char *p;
+ const char *p;
g_return_if_fail (glyphs != NULL);
g_return_if_fail (length >= 0);
@@ -520,7 +520,7 @@ pango_glyph_string_x_to_index (PangoGlyphString *glyphs,
int end_index = -1;
int cluster_chars = 0;
- char *p;
+ const char *p;
gboolean found = FALSE;
@@ -616,7 +616,7 @@ pango_glyph_string_x_to_index (PangoGlyphString *glyphs,
{
if (index)
{
- char *p = text + start_index;
+ const char *p = text + start_index;
int i = 0;
while (i + 1 <= cp)
@@ -635,7 +635,7 @@ pango_glyph_string_x_to_index (PangoGlyphString *glyphs,
{
if (index)
{
- char *p = text + start_index;
+ const char *p = text + start_index;
int i = 0;
while (i + 1 < cp)