mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-common
synced 2026-01-08 21:14:20 +00:00
Initialize variable to avoid compiler warning
Seems the OSX gcc warns on saveRight not being initialzied.
This commit is contained in:
parent
c3d7a087e4
commit
a95a9fe41c
@ -2985,7 +2985,7 @@ miWideDashSegment (GCPtr pGC,
|
||||
double L, l;
|
||||
double k;
|
||||
PolyVertexRec vertices[4];
|
||||
PolyVertexRec saveRight, saveBottom;
|
||||
PolyVertexRec saveRight = { 0 }, saveBottom;
|
||||
PolySlopeRec slopes[4];
|
||||
PolyEdgeRec left[2], right[2];
|
||||
LineFaceRec lcapFace, rcapFace;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user