summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <s.schmidt@samsung.com>2014-11-17 16:51:55 +0100
committerStefan Schmidt <s.schmidt@samsung.com>2014-11-17 16:51:55 +0100
commit36f0fb4689a305956cb49755d79cd472dcc240b8 (patch)
tree0aacd5bfa93ab79110d12efb993c0d803cc39b0e
parent5f8e66a3672b30f6203487e2b60c95a5be705b26 (diff)
downloadefl-36f0fb4689a305956cb49755d79cd472dcc240b8.tar.gz
examples/elocation: Shutup some unused parameter warnings
-rw-r--r--src/examples/elocation/elocation.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/examples/elocation/elocation.c b/src/examples/elocation/elocation.c
index 300684443e..b801985116 100644
--- a/src/examples/elocation/elocation.c
+++ b/src/examples/elocation/elocation.c
@@ -12,7 +12,7 @@
* function.
*/
static Eina_Bool
-status_changed(void *data, int ev_type, void *event)
+status_changed(void *data EINA_UNUSED, int ev_type EINA_UNUSED, void *event)
{
int *status = event;
@@ -23,7 +23,7 @@ status_changed(void *data, int ev_type, void *event)
}
static Eina_Bool
-rgeocode_arrived(void *data, int ev_type, void *event)
+rgeocode_arrived(void *data EINA_UNUSED, int ev_type EINA_UNUSED, void *event)
{
Elocation_Address *address;
@@ -44,7 +44,7 @@ rgeocode_arrived(void *data, int ev_type, void *event)
}
static Eina_Bool
-geocode_arrived(void *data, int ev_type, void *event)
+geocode_arrived(void *data EINA_UNUSED, int ev_type EINA_UNUSED, void *event)
{
Elocation_Position *position;
@@ -62,7 +62,7 @@ geocode_arrived(void *data, int ev_type, void *event)
}
static Eina_Bool
-address_changed(void *data, int ev_type, void *event)
+address_changed(void *data EINA_UNUSED, int ev_type EINA_UNUSED, void *event)
{
Elocation_Address *address;
@@ -83,7 +83,7 @@ address_changed(void *data, int ev_type, void *event)
}
static Eina_Bool
-position_changed(void *data, int ev_type, void *event)
+position_changed(void *data EINA_UNUSED, int ev_type EINA_UNUSED, void *event)
{
Elocation_Position *position;