fileman module - fix warning about constness of ptrs

noisy warning so we can see real bugs. no real bug fixed here.
This commit is contained in:
Carsten Haitzler 2020-01-14 16:14:01 +00:00
parent 5ec8fee280
commit ac4323b453
1 changed files with 1 additions and 1 deletions

View File

@ -655,7 +655,7 @@ e_fwin_show(const char *dev, const char *path)
EINA_LIST_FOREACH(fwins, f, fwin)
{
char *d, *p;
const char *d, *p;
e_fm2_path_get(fwin->cur_page->fm_obj, &d, &p);
if ((d) && (!strcmp(dev, d)) && (p) && (!strcmp(path, p)))