discomfitor pushed a commit to branch enlightenment-0.20. http://git.enlightenment.org/core/enlightenment.git/commit/?id=560cd87a5b27cff9a91a70d2e2c51efc13b1e3da
commit 560cd87a5b27cff9a91a70d2e2c51efc13b1e3da 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; --
