From: tsauerbeck Date: Sun, 4 Apr 2004 17:12:14 +0000 (+0000) Subject: fixed a warning X-Git-Tag: submit/devel/efl/20131022.203902~21927 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e012d65c46efe1097d625aef5eca0f23bddb6b95;p=platform%2Fupstream%2Fefl.git fixed a warning SVN revision: 9590 --- diff --git a/legacy/ecore/src/lib/ecore/ecore.c b/legacy/ecore/src/lib/ecore/ecore.c index 69a4d05..3182165 100644 --- a/legacy/ecore/src/lib/ecore/ecore.c +++ b/legacy/ecore/src/lib/ecore/ecore.c @@ -137,7 +137,7 @@ _ecore_magic_string_get(Ecore_Magic m) /* "running" (and the inverse being time spent running)... this does not */ /* account for other apps and multitasking... */ -static _ecore_fps_debug_init_count = 0; +static int _ecore_fps_debug_init_count = 0; static int _ecore_fps_debug_fd = -1; unsigned int *_ecore_fps_runtime_mmap = NULL; diff --git a/legacy/ecore/src/lib/ecore_config/convenience.c b/legacy/ecore/src/lib/ecore_config/convenience.c index 2f52564..a9028ef 100644 --- a/legacy/ecore/src/lib/ecore_config/convenience.c +++ b/legacy/ecore/src/lib/ecore_config/convenience.c @@ -31,5 +31,7 @@ printf("appending font %s\n", font_path_tmp); } free (font_path); + + return ECORE_CONFIG_ERR_SUCC; }