diff options
author | Matthias Clasen <mclasen@redhat.com> | 2021-08-22 02:12:25 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2021-08-22 02:36:48 -0400 |
commit | bab0a1f78abe6d808ad6beabc708eb6e0fe8b0c4 (patch) | |
tree | 8efcba7f61a0c3a46507ad335b937bdae9b3f39e /pango | |
parent | 16cee40516563ad198ef919e980aa11d4a3fc181 (diff) | |
download | pango-bab0a1f78abe6d808ad6beabc708eb6e0fe8b0c4.tar.gz |
markup: Silence compiler warnings
Diffstat (limited to 'pango')
-rw-r--r-- | pango/pango-markup.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pango/pango-markup.c b/pango/pango-markup.c index f82aacef..22064103 100644 --- a/pango/pango-markup.c +++ b/pango/pango-markup.c @@ -378,6 +378,9 @@ start_element_handler (GMarkupParseContext *context, if (strcmp ("u", element_name) == 0) parse_func = u_parse_func; break; + + default: + break; } if (parse_func == NULL) |