From 78bd2ea6f5fd158d2df59f86deb1b7c778f44457 Mon Sep 17 00:00:00 2001 From: Cedric BAIL Date: Fri, 6 Jan 2017 15:58:26 -0800 Subject: [PATCH] ecore_con: use the right type for prototype. --- src/examples/ecore/ecore_con_eet_client_example.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/examples/ecore/ecore_con_eet_client_example.c b/src/examples/ecore/ecore_con_eet_client_example.c index 9748ea1266..ad949ddbc4 100644 --- a/src/examples/ecore/ecore_con_eet_client_example.c +++ b/src/examples/ecore/ecore_con_eet_client_example.c @@ -14,14 +14,14 @@ #include "ecore_con_eet_descriptor_example.h" Eina_Bool -_eet_svr_discnct_cb(void *data EINA_UNUSED, Ecore_Con_Reply *reply EINA_UNUSED, Ecore_Con_Client *conn EINA_UNUSED) +_eet_svr_discnct_cb(void *data EINA_UNUSED, Ecore_Con_Reply *reply EINA_UNUSED, Ecore_Con_Server *conn EINA_UNUSED) { ecore_main_loop_quit(); return EINA_FALSE; } -Eina_Bool -_eet_svr_cnct_cb(void *data EINA_UNUSED, Ecore_Con_Reply *reply, Ecore_Con_Client *conn EINA_UNUSED) +static Eina_Bool +_eet_svr_cnct_cb(void *data EINA_UNUSED, Ecore_Con_Reply *reply, Ecore_Con_Server *conn EINA_UNUSED) { /* Only id and message parameter are sent to server. not_sending, parameter * is not sent, as it is not added to the eet descriptor. */