diff options
author | Christoph Reiter <reiter.christoph@gmail.com> | 2018-07-29 16:36:31 +0200 |
---|---|---|
committer | Christoph Reiter <reiter.christoph@gmail.com> | 2018-07-29 18:57:03 +0200 |
commit | faa39ef9c9a2452df5caedecf1452ec262b2816b (patch) | |
tree | bd5176df221eee11d989358f922fb005bddc82ab /girepository | |
parent | 5e61825e2ed0412f49c21ba2f24893a8d305ec4b (diff) | |
download | gobject-introspection-faa39ef9c9a2452df5caedecf1452ec262b2816b.tar.gz |
build: enable -Wimplicit-fallthrough
and fix a missplaced break
Diffstat (limited to 'girepository')
-rw-r--r-- | girepository/girparser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/girepository/girparser.c b/girepository/girparser.c index dfc75c96..893a9a4e 100644 --- a/girepository/girparser.c +++ b/girepository/girparser.c @@ -3479,8 +3479,8 @@ end_element_handler (GMarkupParseContext *context, (strcmp ("varargs", element_name) == 0)) { end_type (ctx); - break; } + break; case STATE_ATTRIBUTE: if (strcmp ("attribute", element_name) == 0) { |