diff options
author | Guillaume Friloux <guillaume.friloux@gmail.com> | 2014-06-03 16:37:50 +0200 |
---|---|---|
committer | Guillaume Friloux <guillaume.friloux@gmail.com> | 2014-06-03 16:37:50 +0200 |
commit | 732f1c2a1be8e9bf1e33c9543290f01bc3438242 (patch) | |
tree | 64c5f2eeed428b061bec317fa56be82c910d4a6e /src/bin/eolian/eo1_generator.c | |
parent | 26ea65b470fee7cba7737940a5d47f2031fe5f75 (diff) |
Fix gcc warning about uninitialized variable.
Diffstat (limited to 'src/bin/eolian/eo1_generator.c')
-rw-r--r-- | src/bin/eolian/eo1_generator.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
629 | Eolian_Class impl_class = NULL; | 629 | Eolian_Class impl_class = NULL; |
630 | Eolian_Function_Type ftype; | 630 | Eolian_Function_Type ftype; |
631 | Eolian_Function fnid = NULL; | 631 | Eolian_Function fnid = NULL; |
632 | const char *funcname; | 632 | const char *funcname = NULL; |
633 | char *tp = implname; | 633 | char *tp = implname; |
634 | 634 | ||
635 | if (eolian_implement_information_get(impl_desc, &impl_class, &fnid, &ftype)) | 635 | if (eolian_implement_information_get(impl_desc, &impl_class, &fnid, &ftype)) |