hermet pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=2baad6ac68f174e12e6c387f183285467cef6dab

commit 2baad6ac68f174e12e6c387f183285467cef6dab
Author: Hermet Park <[email protected]>
Date:   Thu Jul 11 17:08:20 2019 +0900

    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])
           {

-- 


Reply via email to