q66 pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=3131c667e91e4af5eb6f653c9e43bff2b6361085
commit 3131c667e91e4af5eb6f653c9e43bff2b6361085 Author: Daniel Kolesa <[email protected]> Date: Fri Jun 5 15:38:05 2015 +0100 eolian/generator: fix silly shadow warning --- src/bin/eolian/docs_generator.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bin/eolian/docs_generator.c b/src/bin/eolian/docs_generator.c index df8ad76..e91d59e 100644 --- a/src/bin/eolian/docs_generator.c +++ b/src/bin/eolian/docs_generator.c @@ -263,19 +263,19 @@ docs_generate_function(const Eolian_Function *fid, Eolian_Function_Type ftype, i if (pdoc) { - const char *desc = eolian_documentation_description_get(pdoc); + const char *pdesc = eolian_documentation_description_get(pdoc); curl = _indent_line(buf, indent); eina_strbuf_append(buf, " * "); _append_section(eolian_documentation_summary_get(pdoc), indent, curl + 3, buf, wbuf); eina_strbuf_append_char(buf, '\n'); - if (desc) + if (pdesc) { _indent_line(buf, indent); eina_strbuf_append(buf, " *\n"); curl = _indent_line(buf, indent); eina_strbuf_append(buf, " * "); - _append_section(desc, indent, curl + 3, buf, wbuf); + _append_section(pdesc, indent, curl + 3, buf, wbuf); eina_strbuf_append_char(buf, '\n'); } if (par || rdoc) --
