stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=4666d805f7c288a5d173ddb35b6377a4df9633f3

commit 4666d805f7c288a5d173ddb35b6377a4df9633f3
Author: Stefan Schmidt <ste...@osg.samsung.com>
Date:   Thu Jul 23 17:18:04 2015 +0200

    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 710df2e..9748ea1 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 01ae4d9..cfae8fd 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 3217dac..6e89f97 100644
--- a/src/examples/ecore/ecore_con_lookup_example.c
+++ b/src/examples/ecore/ecore_con_lookup_example.c
@@ -6,7 +6,7 @@
 #include <Ecore_Con.h>
 
 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);

-- 


Reply via email to