Remove const qualifier.

Dynamically allocated buffers which we will free shouldn't be const.

SVN revision: 38069
This commit is contained in:
Sebastian Dransfeld 2008-12-09 20:08:36 +00:00
parent c4525334f3
commit dd4a299895
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@ ecore_file_mv(const char *src, const char *dst)
stat(src, &st);
if (S_ISREG(st.st_mode))
{
const char *dir;
char *dir;
dir = ecore_file_dir_get(dst);
// Since we can't directly rename, try to
// copy to temp file in the dst directory