q66 pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=8f14930d68114adc6b03ef3c698dd4a8910477f9

commit 8f14930d68114adc6b03ef3c698dd4a8910477f9
Author: Daniel Kolesa <[email protected]>
Date:   Wed Jul 9 13:49:21 2014 +0100

    eolian: function dump now uses the actual syntax
---
 src/lib/eolian/eolian_database.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/lib/eolian/eolian_database.c b/src/lib/eolian/eolian_database.c
index a735fa7..9ea42da 100644
--- a/src/lib/eolian/eolian_database.c
+++ b/src/lib/eolian/eolian_database.c
@@ -1420,12 +1420,14 @@ database_type_print(Eolian_Type type)
    else if (tp->type == EOLIAN_TYPE_FUNCTION)
      {
         Eina_Bool first = EINA_TRUE;
-        puts("fn");
+        puts("func");
         if (tp->ret_type)
           {
-             puts(" -> ");
+             putchar(' ');
              database_type_print(tp->ret_type);
           }
+        else
+          puts(" void");
         puts(" (");
         EINA_LIST_FOREACH(tp->arguments, l, stp)
           {

-- 


Reply via email to