vector json: replace the data type properly.

This commit is contained in:
Hermet Park 2019-07-11 17:08:20 +09:00
parent d8fcd8d300
commit 2baad6ac68
1 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ _construct_drawable_nodes(Efl_Canvas_Vg_Container *parent, const LOTLayerNode *l
//0: Path
efl_gfx_path_reserve(shape, node->mPath.elmCount, node->mPath.ptCount);
for (int i = 0; i < node->mPath.elmCount; i++)
for (size_t i = 0; i < node->mPath.elmCount; i++)
{
switch (node->mPath.elmPtr[i])
{
@ -236,7 +236,7 @@ _construct_mask_nodes(Efl_Canvas_Vg_Container *parent, LOTMask *mask, int depth
efl_gfx_path_reserve(shape, mask->mPath.elmCount, mask->mPath.ptCount);
for (int i = 0; i < mask->mPath.elmCount; i++)
for (size_t i = 0; i < mask->mPath.elmCount; i++)
{
switch (mask->mPath.elmPtr[i])
{