cedric pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=382fe306889385638470cc88c7df37c9cd79fdc5
commit 382fe306889385638470cc88c7df37c9cd79fdc5 Author: Al Poole <[email protected]> Date: Fri Jul 15 09:16:28 2016 -0700 fwin: prevent segv when the vaarg abi messup with unused parameter. Quite a hack overall, but if you don't need those parameter, just put nothing and it will work. @fix T4112 Signed-off-by: Cedric Bail <[email protected]> --- src/modules/fileman/e_fwin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/fileman/e_fwin.c b/src/modules/fileman/e_fwin.c index 9709968..0082098 100644 --- a/src/modules/fileman/e_fwin.c +++ b/src/modules/fileman/e_fwin.c @@ -747,7 +747,7 @@ _e_fwin_new(const char *dev, } static Eina_Bool -_e_fwin_icon_popup_handler(void *data, ...) +_e_fwin_icon_popup_handler(void *data) { E_Fwin *fwin = data; --
