cedric pushed a commit to branch master.

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

commit ee33978dc33df995bda44a95bc3acc40cc715d05
Author: Cedric BAIL <[email protected]>
Date:   Tue Jun 28 11:15:50 2016 -0700

    elementary: try to keep const type in config test.
---
 src/tests/elementary/elm_test_config.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/tests/elementary/elm_test_config.c 
b/src/tests/elementary/elm_test_config.c
index 85221e7..db4d162 100644
--- a/src/tests/elementary/elm_test_config.c
+++ b/src/tests/elementary/elm_test_config.c
@@ -166,10 +166,10 @@ START_TEST (elm_config_win)
 END_TEST
 
 static inline Eina_Bool
-_eina_list_string_has(Eina_List *list, const char *str)
+_eina_list_string_has(const Eina_List *list, const char *str)
 {
    const char *s;
-   Eina_List *l;
+   const Eina_List *l;
 
    EINA_LIST_FOREACH(list, l, s)
      if (eina_streq(str, s))

-- 


Reply via email to