edje: use EINA_UNUSED consistently after in function signatures -- part2

Sorry, I've overlooked these as they are on a new line,
or at the beginning of a function, but I think I've got them all now.

Reviewed-by: Marcel Hollerbach <mail@marcel-hollerbach.de>
Differential Revision: https://phab.enlightenment.org/D11254
This commit is contained in:
ProhtMeyhet 2020-01-31 07:20:54 +00:00 committed by Marcel Hollerbach
parent 509ad38083
commit 5af0e65bff
2 changed files with 6 additions and 6 deletions

View File

@ -118,7 +118,7 @@ struct _Edje_Lua_Edje_Part_Description
jmp_buf _edje_lua_panic_jmp;
static int
_edje_lua_custom_panic(EINA_UNUSED lua_State *L)
_edje_lua_custom_panic(lua_State *L EINA_UNUSED)
{
CRI("PANIC");
longjmp(_edje_lua_panic_jmp, 1);
@ -3477,7 +3477,7 @@ const Edje_Lua_Reg mPart = {
static void
_edje_lua_edje_part_del_cb(void *data, Evas *e EINA_UNUSED, Evas_Object *obj,
EINA_UNUSED void *event_info)
void *event_info EINA_UNUSED)
{
//printf("_edje_lua_object_delete_cb\n");
lua_State *L = data;

View File

@ -112,8 +112,8 @@ _edje_match_states_insert(Edje_States *list,
static void
_edje_match_states_clear(Edje_States *list,
EINA_UNUSED unsigned int patterns_size,
EINA_UNUSED unsigned int patterns_max_length)
unsigned int patterns_size EINA_UNUSED,
unsigned int patterns_max_length EINA_UNUSED)
{
list->size = 0;
}
@ -753,7 +753,7 @@ _edje_signals_sources_patterns_clean(Edje_Signals_Sources_Patterns *ssp)
static Eina_Rbtree_Direction
_edje_signal_source_node_cmp(const Edje_Signal_Source_Char *n1,
const Edje_Signal_Source_Char *n2,
EINA_UNUSED void *data)
void *data EINA_UNUSED)
{
int cmp;
@ -766,7 +766,7 @@ _edje_signal_source_node_cmp(const Edje_Signal_Source_Char *n1,
static int
_edje_signal_source_key_cmp(const Edje_Signal_Source_Char *node,
const char *sig,
EINA_UNUSED int length,
int length EINA_UNUSED,
const char *source)
{
int cmp;