From 4666d805f7c288a5d173ddb35b6377a4df9633f3 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Thu, 23 Jul 2015 17:18:04 +0200 Subject: [PATCH] examples/ecore_con: Mark some unused parameters as such --- src/examples/ecore/ecore_con_eet_client_example.c | 2 +- src/examples/ecore/ecore_con_eet_server_example.c | 2 +- src/examples/ecore/ecore_con_lookup_example.c | 2 +- 3 files 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 710df2e5d8..9748ea1266 100644 --- a/src/examples/ecore/ecore_con_eet_client_example.c +++ b/src/examples/ecore/ecore_con_eet_client_example.c @@ -14,7 +14,7 @@ #include "ecore_con_eet_descriptor_example.h" Eina_Bool -_eet_svr_discnct_cb(void *data EINA_UNUSED, Ecore_Con_Reply *reply, Ecore_Con_Client *conn EINA_UNUSED) +_eet_svr_discnct_cb(void *data EINA_UNUSED, Ecore_Con_Reply *reply EINA_UNUSED, Ecore_Con_Client *conn EINA_UNUSED) { ecore_main_loop_quit(); return EINA_FALSE; diff --git a/src/examples/ecore/ecore_con_eet_server_example.c b/src/examples/ecore/ecore_con_eet_server_example.c index 01ae4d9f76..cfae8fd4ce 100644 --- a/src/examples/ecore/ecore_con_eet_server_example.c +++ b/src/examples/ecore/ecore_con_eet_server_example.c @@ -31,7 +31,7 @@ _eet_client_discnct_cb(void *data EINA_UNUSED, Ecore_Con_Reply *reply EINA_UNUSE } Eina_Bool -_eet_client_cnct_cb(void *data EINA_UNUSED, Ecore_Con_Reply *reply, Ecore_Con_Client *conn EINA_UNUSED) +_eet_client_cnct_cb(void *data EINA_UNUSED, Ecore_Con_Reply *reply EINA_UNUSED, Ecore_Con_Client *conn EINA_UNUSED) { _client_count++; return EINA_TRUE; diff --git a/src/examples/ecore/ecore_con_lookup_example.c b/src/examples/ecore/ecore_con_lookup_example.c index 3217dacac3..6e89f9745f 100644 --- a/src/examples/ecore/ecore_con_lookup_example.c +++ b/src/examples/ecore/ecore_con_lookup_example.c @@ -6,7 +6,7 @@ #include static void -_lookup_done_cb(const char *canonname, const char *ip, struct sockaddr *addr, int addrlen, void *data EINA_UNUSED) +_lookup_done_cb(const char *canonname, const char *ip, struct sockaddr *addr, int addrlen EINA_UNUSED, void *data EINA_UNUSED) { printf("canonname = %s\n", canonname); printf("ip = %s\n", ip);