elementary: try to keep const type in config test.
authorCedric BAIL <cedric@osg.samsung.com>
Tue, 28 Jun 2016 18:15:50 +0000 (11:15 -0700)
committerCedric BAIL <cedric@osg.samsung.com>
Tue, 28 Jun 2016 18:15:50 +0000 (11:15 -0700)
src/tests/elementary/elm_test_config.c

index 85221e7..db4d162 100644 (file)
@@ -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))