discomfitor pushed a commit to branch enlightenment-0.21. http://git.enlightenment.org/core/enlightenment.git/commit/?id=6406c2c1b6a2cb18c188348f7fbd1474ff0905cf
commit 6406c2c1b6a2cb18c188348f7fbd1474ff0905cf Author: Mike Blumenkrantz <[email protected]> Date: Fri Aug 25 14:47:05 2017 -0400 use int array for client maximize hint state update CID 1379946 --- src/bin/e_hints.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_hints.c b/src/bin/e_hints.c index 62a9b27f0..650843dfd 100644 --- a/src/bin/e_hints.c +++ b/src/bin/e_hints.c @@ -794,7 +794,7 @@ e_hints_window_state_update(E_Client *ec, int state, int action) case ECORE_X_WINDOW_STATE_MAXIMIZED_HORZ: case INT_MAX: { - E_Maximize max[] = + int max[] = { [ECORE_X_WINDOW_STATE_MAXIMIZED_VERT] = E_MAXIMIZE_VERTICAL, [ECORE_X_WINDOW_STATE_MAXIMIZED_HORZ] = E_MAXIMIZE_HORIZONTAL, --
