raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=fe499cecff117c393a3e7d4ce32d711c0246be8a
commit fe499cecff117c393a3e7d4ce32d711c0246be8a Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Mon May 10 16:25:27 2021 +0100 e actions - cast to avoid alignment warning that is not needed --- src/bin/e_actions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_actions.c b/src/bin/e_actions.c index 3ae0274ae..eafa14393 100644 --- a/src/bin/e_actions.c +++ b/src/bin/e_actions.c @@ -1123,7 +1123,7 @@ ACT_FN_GO(window_grow, ) if (params) { - E_Client *ec = (E_Client *)obj, *cur; + E_Client *ec = (E_Client *)((void *)obj), *cur; E_Desk *desk_current; int hdir = 0, vdir = 0; int x1, y1, x2, y2, w, h; --