]> granicus.if.org Git - graphviz/commitdiff
p_invtrapezium: squash a -Wmissing-field-initializer warning
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 11 Sep 2021 16:01:56 +0000 (09:01 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 18 Sep 2021 19:34:52 +0000 (12:34 -0700)
lib/common/shapes.c

index f4ea134f432f90020b86d721d746364763b3e62a..cce21ccf4eb5b2ad827dd73a7d20a9c127b43230 100644 (file)
@@ -117,7 +117,8 @@ static polygon_t p_doublecircle = {
     .regular = TRUE, .peripheries = 2, .sides = 1};
 static polygon_t p_invtriangle = {
     .peripheries = 1, .sides = 3, .orientation = 180.0};
-static polygon_t p_invtrapezium = { FALSE, 1, 4, 180., -.4, 0. };
+static polygon_t p_invtrapezium = {
+    .peripheries = 1, .sides = 4, .orientation = 180.0, .distortion = -0.4};
 static polygon_t p_invhouse = { FALSE, 1, 5, 180., -.64, 0. };
 static polygon_t p_doubleoctagon = { FALSE, 2, 8, 0., 0., 0. };
 static polygon_t p_tripleoctagon = { FALSE, 3, 8, 0., 0., 0. };