From 2baad6ac68f174e12e6c387f183285467cef6dab Mon Sep 17 00:00:00 2001 From: Hermet Park Date: Thu, 11 Jul 2019 17:08:20 +0900 Subject: [PATCH] vector json: replace the data type properly. --- src/static_libs/vg_common/vg_common_json.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/static_libs/vg_common/vg_common_json.c b/src/static_libs/vg_common/vg_common_json.c index 50ab8c3153..c24320261a 100644 --- a/src/static_libs/vg_common/vg_common_json.c +++ b/src/static_libs/vg_common/vg_common_json.c @@ -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]) {