const char * here

SVN revision: 19919
This commit is contained in:
doursse 2006-01-20 09:13:19 +00:00 committed by doursse
parent bac309cbdf
commit 2c32fdaca4
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ extern "C" {
EAPI char *ecore_file_realpath (const char *file);
EAPI int ecore_file_unlink (const char *file);
EAPI const char *ecore_file_get_file (const char *path);
EAPI char *ecore_file_get_dir (char *path);
EAPI char *ecore_file_get_dir (const char *path);
EAPI int ecore_file_can_read (const char *file);
EAPI int ecore_file_can_write (const char *file);

View File

@ -241,7 +241,7 @@ ecore_file_get_file(const char *path)
}
EAPI char *
ecore_file_get_dir(char *file)
ecore_file_get_dir(const char *file)
{
char *p;
char buf[PATH_MAX];