]> granicus.if.org Git - graphviz/commitdiff
p_egg: squash -Wmissing-field-initializer warning
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 31 Aug 2021 03:57:51 +0000 (20:57 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 4 Sep 2021 01:01:30 +0000 (18:01 -0700)
lib/common/shapes.c

index 70316d6eebb98a00fb60fd7e29c79116da7fa185..230c98fe1eea069d8e0dd373cc28ec31b5f1e3dd 100644 (file)
@@ -85,7 +85,7 @@ static polygon_t p_polygon = {.peripheries = 1};
 /* builtin polygon descriptions */
 static polygon_t p_ellipse = {.peripheries = 1, .sides = 1};
 static polygon_t p_circle = {.regular = TRUE, .peripheries = 1, .sides = 1};
-static polygon_t p_egg = { FALSE, 1, 1, 0., -.3, 0. };
+static polygon_t p_egg = {.peripheries = 1, .sides = 1, .distortion = -0.3};
 static polygon_t p_triangle = { FALSE, 1, 3, 0., 0., 0. };
 static polygon_t p_box = { FALSE, 1, 4, 0., 0., 0. };
 static polygon_t p_square = { TRUE, 1, 4, 0., 0., 0. };