efreet icon - fix constness of char ptr

This commit is contained in:
Carsten Haitzler 2018-11-08 16:24:57 +00:00
parent ce8e11764c
commit a0171db3f2
1 changed files with 4 additions and 0 deletions

View File

@ -218,7 +218,11 @@ efreet_icon_remove_extension(const char *icon)
EAPI const char *
efreet_icon_path_find(const char *theme_name, const char *icon, unsigned int size)
{
#ifdef SLOPPY_SPEC
char *tmp;
#else
const char *tmp;
#endif
const char *value = NULL;
Efreet_Icon_Theme *theme;