diff options
author | zmike <michael.blumenkrantz@gmail.com> | 2014-11-04 17:40:59 -0500 |
---|---|---|
committer | zmike <michael.blumenkrantz@gmail.com> | 2014-11-04 17:42:52 -0500 |
commit | 80076bffb91b09690067af6def78756f2ab9d95a (patch) | |
tree | e707b8fa48a70316abfcdd12b5951ee66e78def1 /src/bin/eldbus/source_client.c | |
parent | 856db64d92e3bc3ec97a5c36f84e81947b54143d (diff) |
eldbus-codegen now outputs compileable code for complex method signatures
it would be an understatement to say that I am disappointed by the original author's decision to write zero tests for this utility.
Diffstat (limited to 'src/bin/eldbus/source_client.c')
-rw-r--r-- | src/bin/eldbus/source_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/eldbus/source_client.c b/src/bin/eldbus/source_client.c index af21c29171..b31c68ae07 100644 --- a/src/bin/eldbus/source_client.c +++ b/src/bin/eldbus/source_client.c | |||
@@ -103,7 +103,7 @@ source_client_complex_method_call_generate(const DBus_Method *method, Eina_Strbu | |||
103 | eina_strbuf_append_printf(c_code, " ERR(\"Error: Filling message from eina value.\");\n"); | 103 | eina_strbuf_append_printf(c_code, " ERR(\"Error: Filling message from eina value.\");\n"); |
104 | eina_strbuf_append_printf(c_code, " return;\n"); | 104 | eina_strbuf_append_printf(c_code, " return;\n"); |
105 | eina_strbuf_append_printf(c_code, " }\n"); | 105 | eina_strbuf_append_printf(c_code, " }\n"); |
106 | eina_strbuf_append_printf(c_code, " eldbus_proxy_send(proxy, msg, %s, NULL, NULL, -1);\n", method->cb_name); | 106 | eina_strbuf_append_printf(c_code, " eldbus_proxy_send(proxy, msg, NULL, NULL, -1);\n"); |
107 | eina_strbuf_append_printf(c_code, "}\n"); | 107 | eina_strbuf_append_printf(c_code, "}\n"); |
108 | goto end; | 108 | goto end; |
109 | } | 109 | } |