summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChun-wei Fan <fanchunwei@src.gnome.org>2019-08-12 18:09:18 +0800
committerChun-wei Fan <fanchunwei@src.gnome.org>2019-08-12 18:09:18 +0800
commit6901e5e1aa565f6fb3205335d41dece7a204a169 (patch)
treea7f186a60c176e47433bace6cdbf310680676af2
parent1f74d46424f493e9c8ff699688e1ce89f466fd72 (diff)
downloadpango-6901e5e1aa565f6fb3205335d41dece7a204a169.tar.gz
pango/pangofc-shape.c: Fix build
The hb_tag_t array was declared as an array of hb_tag_t pointers, whereas it should have been an array of hb_tag_t's.
-rw-r--r--pango/pangofc-shape.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pango/pangofc-shape.c b/pango/pangofc-shape.c
index 6f714ffd..112aac03 100644
--- a/pango/pangofc-shape.c
+++ b/pango/pangofc-shape.c
@@ -117,7 +117,7 @@ apply_extra_attributes (GSList *attrs,
PangoAttribute *attr = l->data;
if (attr->klass->type == PANGO_ATTR_LETTER_SPACING)
{
- hb_tag_t *tags[] = {
+ hb_tag_t tags[] = {
HB_TAG('l','i','g','a'),
HB_TAG('c','l','i','g'),
HB_TAG('d','l','i','g'),