* src/sdf/ftsdf.c (get_control_box): Fix compiler warning.

This commit is contained in:
Werner Lemberg 2021-08-18 08:52:21 +02:00
parent f11f3ed15b
commit f44c2d5860
1 changed files with 3 additions and 3 deletions

View File

@ -841,12 +841,12 @@
*
*/
/* Return the control box of a edge. The control box is a rectangle */
/* in which all the control points can fit tightly. */
/* Return the control box of an edge. The control box is a rectangle */
/* in which all the control points can fit tightly. */
static FT_CBox
get_control_box( SDF_Edge edge )
{
FT_CBox cbox;
FT_CBox cbox = { 0, 0, 0, 0 };
FT_Bool is_set = 0;