devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=ec1c6b42b40a5139ac4751791842e1f889266cec
commit ec1c6b42b40a5139ac4751791842e1f889266cec Author: Christopher Michael <devilho...@comcast.net> Date: Thu Sep 17 11:23:47 2020 -0400 temperature: Mark hdata paramater as unused Compiler warns 'hdata' is unused, so mark it with EINA_UNUSED --- src/modules/temperature/e_mod_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/temperature/e_mod_main.c b/src/modules/temperature/e_mod_main.c index c9e2a9f24..8ecd02c9a 100644 --- a/src/modules/temperature/e_mod_main.c +++ b/src/modules/temperature/e_mod_main.c @@ -268,7 +268,7 @@ _temperature_face_shutdown(const Eina_Hash *hash EINA_UNUSED, const void *key EI } static Eina_Bool -_temperature_face_id_max(const Eina_Hash *hash EINA_UNUSED, const void *key, void *hdata, void *fdata) +_temperature_face_id_max(const Eina_Hash *hash EINA_UNUSED, const void *key, void *hdata EINA_UNUSED, void *fdata) { const char *p; int *max; --