From 5898e380e9ac7c0ebea26c7788f1b2824cef9cfe Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Sun, 24 Sep 2006 20:03:31 +0000 Subject: [PATCH] I'm not the first to say this, and I want be the last. const is more trouble than it's worth. It gets in the way more than it helps. SVN revision: 26112 --- legacy/ecore/src/lib/ecore_desktop/ecore_desktop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/legacy/ecore/src/lib/ecore_desktop/ecore_desktop.c b/legacy/ecore/src/lib/ecore_desktop/ecore_desktop.c index e12697dcfb..45ea689027 100644 --- a/legacy/ecore/src/lib/ecore_desktop/ecore_desktop.c +++ b/legacy/ecore/src/lib/ecore_desktop/ecore_desktop.c @@ -222,7 +222,7 @@ _ecore_desktop_get(const char *file, const char *lang) char *categories = NULL; int size = 0; - value = ecore_file_get_file(result->original_path); + value = (char *) ecore_file_get_file(result->original_path); if (value) { char *temp;