]> granicus.if.org Git - graphviz/commitdiff
p_tab: squash -Wmissing-field-initializer warning
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 4 Sep 2021 03:12:37 +0000 (20:12 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 10 Sep 2021 14:49:59 +0000 (07:49 -0700)
lib/common/shapes.c

index b035f73e180d8840c4747d07d7e1fc6af34ea969..64d901876cd4f73720ac01bbc24845e79fc44468 100644 (file)
@@ -100,7 +100,7 @@ static polygon_t p_hexagon = {.peripheries = 1, .sides = 6};
 static polygon_t p_septagon = {.peripheries = 1, .sides = 7};
 static polygon_t p_octagon = {.peripheries = 1, .sides = 8};
 static polygon_t p_note = {.peripheries = 1, .sides = 4, .option = DOGEAR};
-static polygon_t p_tab = { FALSE, 1, 4, 0., 0., 0., TAB };
+static polygon_t p_tab = {.peripheries = 1, .sides = 4, .option = TAB};
 static polygon_t p_folder = { FALSE, 1, 4, 0., 0., 0., FOLDER };
 static polygon_t p_box3d = { FALSE, 1, 4, 0., 0., 0., BOX3D };
 static polygon_t p_component = { FALSE, 1, 4, 0., 0., 0., COMPONENT };