Make fname const.

SVN revision: 24994
This commit is contained in:
sebastid 2006-08-21 15:34:43 +00:00 committed by sebastid
parent 621bc1a877
commit 77c810e910
1 changed files with 2 additions and 2 deletions

View File

@ -133,11 +133,11 @@ e_error_message_manager_show(E_Manager *man, char *title, char *txt)
{
char *p;
Evas_Coord y;
char *fname;
const char *fname;
int fsize;
y = 16 + 64 + 16;
fname = (char *)e_font_default_string_get("default", &fsize);
fname = e_font_default_string_get("default", &fsize);
for (p = newstr; p;)
{
char *pp;