From c44c1e2ea077dc689f52239ff341b546e95f2480 Mon Sep 17 00:00:00 2001 From: Marcel Hollerbach Date: Mon, 25 Jun 2018 14:25:52 +0900 Subject: efl_gfx_path: make counters unsigned Summary: we are comparing to unsigned number, and the number are moving strongly from 0 up. Depends on D6380 Reviewers: devilhorns Subscribers: Hermet, cedric, #committers, zmike Tags: #efl Differential Revision: https://phab.enlightenment.org/D6381 --- src/lib/efl/interfaces/efl_gfx_path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/efl/interfaces/efl_gfx_path.c') diff --git a/src/lib/efl/interfaces/efl_gfx_path.c b/src/lib/efl/interfaces/efl_gfx_path.c index ca3a842b99..97439c0fee 100644 --- a/src/lib/efl/interfaces/efl_gfx_path.c +++ b/src/lib/efl/interfaces/efl_gfx_path.c @@ -335,7 +335,7 @@ _efl_gfx_path_interpolate(Eo *obj, Efl_Gfx_Path_Data *pd, { double *to_pts = to_pd->points; double *from_pts = from_pd->points; - int i, j; + unsigned int i, j; for (i = 0; cmds[i] != EFL_GFX_PATH_COMMAND_TYPE_END; i++) for (j = 0; j < _efl_gfx_path_command_length(cmds[i]); j++) -- cgit v1.2.1