From: Rico Tzschichholz Date: Tue, 5 Nov 2019 14:34:52 +0000 (+0100) Subject: g-i: Avoid use of uninitialized "markup" warning X-Git-Tag: 0.44.10~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=76e682be1b447255453c38dce86791ec20547680;p=thirdparty%2Fvala.git g-i: Avoid use of uninitialized "markup" warning --- diff --git a/gobject-introspection/gidlwriter.c b/gobject-introspection/gidlwriter.c index 2c0cbaa5c..32c86f73d 100644 --- a/gobject-introspection/gidlwriter.c +++ b/gobject-introspection/gidlwriter.c @@ -273,6 +273,10 @@ interface_generate (GIdlWriter * writer, GIdlNodeInterface * node) ("\n", node->node.name, node->gtype_name, node->gtype_init); } + else + { + g_assert_not_reached (); + } g_writer_write_indent (writer, markup); g_free (markup);