kuri pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=732f1c2a1be8e9bf1e33c9543290f01bc3438242
commit 732f1c2a1be8e9bf1e33c9543290f01bc3438242 Author: Guillaume Friloux <[email protected]> Date: Tue Jun 3 16:37:50 2014 +0200 Fix gcc warning about uninitialized variable. --- src/bin/eolian/eo1_generator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/eolian/eo1_generator.c b/src/bin/eolian/eo1_generator.c index 16b32de..8e5b6f2 100644 --- a/src/bin/eolian/eo1_generator.c +++ b/src/bin/eolian/eo1_generator.c @@ -629,7 +629,7 @@ eo_source_end_generate(const Eolian_Class class, Eina_Strbuf *buf) Eolian_Class impl_class = NULL; Eolian_Function_Type ftype; Eolian_Function fnid = NULL; - const char *funcname; + const char *funcname = NULL; char *tp = implname; if (eolian_implement_information_get(impl_desc, &impl_class, &fnid, &ftype)) --
