zmike pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=18de24baeb17b13d1f0719db66253f2c001ab283

commit 18de24baeb17b13d1f0719db66253f2c001ab283
Author: Cedric BAIL <cedric.b...@free.fr>
Date:   Mon Oct 14 09:38:23 2019 -0400

    ecore_con: use only Eina_Magic infrastructure for set and check in 
Ecore_Con_Url.
    
    Summary:
    We can not have half our code rely on Ecore magic check and the other half
    use Eina_Magic or this will lead to inconsistency with Eina_Magic 
definition.
    
    Reviewers: zmike, segfaultxavi, bu5hm4n, raster
    
    Reviewed By: raster
    
    Subscribers: #reviewers, #committers
    
    Tags: #efl
    
    Differential Revision: https://phab.enlightenment.org/D10383
---
 src/lib/ecore_con/ecore_con_url.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/ecore_con/ecore_con_url.c 
b/src/lib/ecore_con/ecore_con_url.c
index 27b391c32d..c92af111c9 100644
--- a/src/lib/ecore_con/ecore_con_url.c
+++ b/src/lib/ecore_con/ecore_con_url.c
@@ -159,7 +159,7 @@ struct _Ecore_Con_Url
 #define ECORE_CON_URL_CHECK_RETURN(u, ...) \
   do \
     { \
-       if (!ECORE_MAGIC_CHECK(u, ECORE_MAGIC_CON_URL)) \
+       if (!EINA_MAGIC_CHECK(u, ECORE_MAGIC_CON_URL)) \
          { \
             ECORE_MAGIC_FAIL(u, ECORE_MAGIC_CON_URL, __FUNCTION__); \
             return __VA_ARGS__; \

-- 


Reply via email to