From 92c6e8799c35fa8a25c84003b9dbff6daae0e7e2 Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Fri, 3 Oct 2014 13:17:33 -0400 Subject: [PATCH] fix unused function paramters warning when building for wayland only Signed-off-by: Chris Michael --- 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 2a73c7150..1868d3238 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 }