summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJean-Philippe Andre <jp.andre@samsung.com>2015-04-21 20:40:27 +0900
committerJean-Philippe Andre <jp.andre@samsung.com>2015-04-21 20:40:27 +0900
commit841403e41545a364447aca100c5d16db716fd994 (patch)
treea623e24456cb315e9947542089fc311b4a56b942
parent6a0d2382f1a1f3e7587450c0decc47a9bd2f8a27 (diff)
downloadefl-841403e41545a364447aca100c5d16db716fd994.tar.gz
Ector: More clang silencing
-rw-r--r--src/lib/ector/software/ector_software_rasterizer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ector/software/ector_software_rasterizer.c b/src/lib/ector/software/ector_software_rasterizer.c
index 495e50fc4f..2c55565089 100644
--- a/src/lib/ector/software/ector_software_rasterizer.c
+++ b/src/lib/ector/software/ector_software_rasterizer.c
@@ -412,7 +412,7 @@ ector_software_rasterizer_generate_stroke_rle_data(Software_Rasterizer *rasteriz
SW_FT_Stroker_ParseOutline(rasterizer->stroker, outline, !closePath);
SW_FT_Stroker_GetCounts(rasterizer->stroker,&points, &contors);
- SW_FT_Outline strokeOutline = {0};
+ SW_FT_Outline strokeOutline = { 0, 0, NULL, NULL, NULL, 0 };
strokeOutline.points = (SW_FT_Vector *) calloc(points, sizeof(SW_FT_Vector));
strokeOutline.tags = (char *) calloc(points, sizeof(char));
strokeOutline.contours = (short *) calloc(contors, sizeof(short));