From: Matthew Fernandez Date: Sat, 25 Sep 2021 20:13:17 +0000 (-0700) Subject: p_signature: squash -Wmissing-field-initializer warning X-Git-Tag: 2.49.2~35^2~5 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=50a4195384da424f1c7d929a4d9456d11b72b510;p=graphviz p_signature: squash -Wmissing-field-initializer warning --- diff --git a/lib/common/shapes.c b/lib/common/shapes.c index bc0df5c7b..262b20a1a 100644 --- a/lib/common/shapes.c +++ b/lib/common/shapes.c @@ -168,7 +168,8 @@ static polygon_t p_noverhang = { .peripheries = 1, .sides = 4, .option = NOVERHANG}; static polygon_t p_assembly = { .peripheries = 1, .sides = 4, .option = ASSEMBLY}; -static polygon_t p_signature = { FALSE, 1, 4, 0., 0., 0., SIGNATURE}; +static polygon_t p_signature = { + .peripheries = 1, .sides = 4, .option = SIGNATURE}; static polygon_t p_rpromoter = { FALSE, 1, 4, 0., 0., 0., RPROMOTER}; static polygon_t p_rarrow = { FALSE, 1, 4, 0., 0., 0., RARROW}; static polygon_t p_larrow = { FALSE, 1, 4, 0., 0., 0., LARROW};