From 732f1c2a1be8e9bf1e33c9543290f01bc3438242 Mon Sep 17 00:00:00 2001 From: Guillaume Friloux Date: Tue, 3 Jun 2014 16:37:50 +0200 Subject: [PATCH] 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 16b32de69b..8e5b6f2d97 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))