summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorFabiano FidĂȘncio <fidencio@redhat.com>2014-09-01 15:45:23 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2014-09-18 13:15:35 +0200
commitfbdd4e41c00e8f5a2d7397d69f4d4fac53d311c8 (patch)
tree5ab7ba9c3f17795edd9bd6ba0d3d4ed3e4b143e1 /common
parent6f3918ce7c8aad3c3c7be117db730dcb3eafecda (diff)
common: Fix -Wmissing-field-initializers
Diffstat (limited to 'common')
-rw-r--r--common/lines.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/lines.c b/common/lines.c
index 726a350..36b40a7 100644
--- a/common/lines.c
+++ b/common/lines.c
@@ -2978,7 +2978,7 @@ miWideDashSegment (GCPtr pGC,
double L, l;
double k;
PolyVertexRec vertices[4];
- PolyVertexRec saveRight = { 0 }, saveBottom;
+ PolyVertexRec saveRight = { 0, 0 }, saveBottom;
PolySlopeRec slopes[4];
PolyEdgeRec left[4], right[4];
LineFaceRec lcapFace, rcapFace;