[pango/fix-pangofc-shape-c] pango/pangofc-shape.c: Fix build



commit 6901e5e1aa565f6fb3205335d41dece7a204a169
Author: Chun-wei Fan <fanchunwei src gnome org>
Date:   Mon Aug 12 18:09:18 2019 +0800

    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.

 pango/pangofc-shape.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
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'),


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]