diff --git a/src/modules/evas/engines/software_x11/evas_x_egl.c b/src/modules/evas/engines/software_x11/evas_x_egl.c index 38ded3413e..ef3516e354 100644 --- a/src/modules/evas/engines/software_x11/evas_x_egl.c +++ b/src/modules/evas/engines/software_x11/evas_x_egl.c @@ -277,7 +277,19 @@ evas_software_egl_outbuf_setup_x(int w, int h, int rot, Outbuf_Depth depth, int grayscale, int max_colors, Pixmap mask, int shape_dither, int destination_alpha) { + (void) w; + (void) h; + (void) rot; + (void) depth; + (void) draw; + (void) cmap; + (void) x_depth; + (void) grayscale; + (void) max_colors; + (void) mask; + (void) shape_dither; + (void) destination_alpha; + (void) disp; + (void) vis; return NULL; - w = h = rot = depth = draw = cmap = x_depth = grayscale = max_colors = mask = shape_dither = destination_alpha = 0; - disp = NULL; vis = NULL; }