From: Matthew Fernandez Date: Sat, 25 Sep 2021 20:15:31 +0000 (-0700) Subject: p_rarrow: squash -Wmissing-field-initializer warning X-Git-Tag: 2.49.2~35^2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=91cbfd4c1bb1ce30fd88a13b805695f5337f982f;p=graphviz p_rarrow: squash -Wmissing-field-initializer warning --- diff --git a/lib/common/shapes.c b/lib/common/shapes.c index 64240d917..d7bed7a99 100644 --- a/lib/common/shapes.c +++ b/lib/common/shapes.c @@ -172,7 +172,7 @@ static polygon_t p_signature = { .peripheries = 1, .sides = 4, .option = SIGNATURE}; static polygon_t p_rpromoter = { .peripheries = 1, .sides = 4, .option = RPROMOTER}; -static polygon_t p_rarrow = { FALSE, 1, 4, 0., 0., 0., RARROW}; +static polygon_t p_rarrow = {.peripheries = 1, .sides = 4, .option = RARROW}; static polygon_t p_larrow = { FALSE, 1, 4, 0., 0., 0., LARROW}; static polygon_t p_lpromoter = { FALSE, 1, 4, 0., 0., 0., LPROMOTER};