diff options
author | Daniel Zaoui <daniel.zaoui@samsung.com> | 2014-02-20 13:08:34 +0200 |
---|---|---|
committer | Daniel Zaoui <daniel.zaoui@samsung.com> | 2014-03-03 14:09:56 +0200 |
commit | baaf92c93aa3f39642b6ff90213fbef26f937eda (patch) | |
tree | 8f8c3fec40d38dbb1190ab0520b088983e4aacf7 /src/bin/eolian/eo1_generator.c | |
parent | 60919ecbe60de38f5d91167983feaffbfa99ff57 (diff) |
Eolian/Generator: implementation prototype change
Since we know the type of the private data given as parameter of the
implemented function, we can set it instead of void *.
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 853499ddfa..c632bcac60 100644 --- a/src/bin/eolian/eo1_generator.c +++ b/src/bin/eolian/eo1_generator.c | |||
@@ -109,7 +109,7 @@ tmpl_eo_pardesc[] =" * @param[%s] %s\n"; | |||
109 | static const char | 109 | static const char |
110 | tmpl_eobind_body[] ="\ | 110 | tmpl_eobind_body[] ="\ |
111 | \n\ | 111 | \n\ |
112 | @#ret_type _@#class_@#func(Eo *obj, void *_pd@#full_params);\n\n\ | 112 | @#ret_type _@#class_@#func(Eo *obj, @#Class_Data *pd@#full_params);\n\n\ |
113 | static void\n\ | 113 | static void\n\ |
114 | _eo_obj_@#class_@#func(Eo *obj, void *_pd, va_list *list@#list_unused)\n\ | 114 | _eo_obj_@#class_@#func(Eo *obj, void *_pd, va_list *list@#list_unused)\n\ |
115 | {\n\ | 115 | {\n\ |