browser: Fix function type

Returning "char *" instead of "const char *" since the function returns
an strdup() string.
This commit is contained in:
Flavio Ceolin 2015-08-16 19:24:52 -03:00
parent f289915ca9
commit 68271a0c89
1 changed files with 1 additions and 1 deletions

View File

@ -507,7 +507,7 @@ _last_entry_find(Ephoto_Single_Browser *sb)
return eina_list_last_data_get(sb->ephoto->entries);
}
static const char *
static char *
_ephoto_get_file_size(const char *path)
{
char isize[PATH_MAX];