devilhorns pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=92c6e8799c35fa8a25c84003b9dbff6daae0e7e2
commit 92c6e8799c35fa8a25c84003b9dbff6daae0e7e2 Author: Chris Michael <[email protected]> Date: Fri Oct 3 13:17:33 2014 -0400 fix unused function paramters warning when building for wayland only Signed-off-by: Chris Michael <[email protected]> --- src/bin/e_alert.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bin/e_alert.c b/src/bin/e_alert.c index 2a73c71..1868d32 100644 --- a/src/bin/e_alert.c +++ b/src/bin/e_alert.c @@ -28,6 +28,9 @@ e_alert_composite_win(Ecore_X_Window root, Ecore_X_Window comp) ecore_x_window_prop_property_del(root, composite_win); else ecore_x_window_prop_card32_set(root, composite_win, &comp, 1); +#else + (void)root; + (void)comp; #endif } --
