Change char to const char to avoid compiler warning.

SVN revision: 33337
This commit is contained in:
Christopher Michael 2008-01-04 03:47:27 +00:00
parent f980a42516
commit 1d9279a619
1 changed files with 1 additions and 1 deletions

View File

@ -1112,7 +1112,7 @@ e_fm2_icon_get(Evas *evas, E_Fm2_Icon *ic,
(!strncmp(ic->info.icon, "./", 2)) ||
(!strncmp(ic->info.icon, "../", 3)))
{
char *icfile = NULL;
const char *icfile;
/* path to icon file */
icfile = ic->info.icon;