summaryrefslogtreecommitdiff
path: root/pango/pango-attributes.c
diff options
context:
space:
mode:
Diffstat (limited to 'pango/pango-attributes.c')
-rw-r--r--pango/pango-attributes.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/pango/pango-attributes.c b/pango/pango-attributes.c
index 60d14706..a984e6f2 100644
--- a/pango/pango-attributes.c
+++ b/pango/pango-attributes.c
@@ -2668,7 +2668,12 @@ attr_print (GString *str,
else if ((features = pango_attribute_as_font_features (attr)) != NULL)
g_string_append_printf (str, " \"%s\"", features->features);
else
- g_assert_not_reached ();
+ {
+ g_warning ("Unhandled attribute type %s (%d)\n",
+ get_attr_type_nick (attr->klass->type),
+ attr->klass->type);
+ g_assert_not_reached ();
+ }
}
/**