diff options
author | Marcel Hollerbach <mail@marcel-hollerbach.de> | 2018-06-25 14:25:52 +0900 |
---|---|---|
committer | Hermet Park <hermetpark@gmail.com> | 2018-06-25 14:25:52 +0900 |
commit | c44c1e2ea077dc689f52239ff341b546e95f2480 (patch) | |
tree | bb89243b75780231bdbd41fa30986aebc8542a09 | |
parent | 3db3fbaeeb956d9b264a86c310e657f2d8bb5f45 (diff) |
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
Diffstat (limited to '')
-rw-r--r-- | src/lib/efl/interfaces/efl_gfx_path.c | 2 |
1 files changed, 1 insertions, 1 deletions
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, | |||
335 | { | 335 | { |
336 | double *to_pts = to_pd->points; | 336 | double *to_pts = to_pd->points; |
337 | double *from_pts = from_pd->points; | 337 | double *from_pts = from_pd->points; |
338 | int i, j; | 338 | unsigned int i, j; |
339 | 339 | ||
340 | for (i = 0; cmds[i] != EFL_GFX_PATH_COMMAND_TYPE_END; i++) | 340 | for (i = 0; cmds[i] != EFL_GFX_PATH_COMMAND_TYPE_END; i++) |
341 | for (j = 0; j < _efl_gfx_path_command_length(cmds[i]); j++) | 341 | for (j = 0; j < _efl_gfx_path_command_length(cmds[i]); j++) |