From e203b321711123c83819751df1bea2e4a13e190a Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Tue, 27 Jan 2015 10:52:53 -0500 Subject: [PATCH] evas-software: Fix call to evas_software_xcb_outbuf_setup function Summary: Seems we were missing a comma here and this was causing a compile break. @fix Signed-off-by: Chris Michael --- src/modules/evas/engines/software_x11/evas_engine.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/modules/evas/engines/software_x11/evas_engine.c b/src/modules/evas/engines/software_x11/evas_engine.c index 2d7e9bfb61..c838f6d060 100644 --- a/src/modules/evas/engines/software_x11/evas_engine.c +++ b/src/modules/evas/engines/software_x11/evas_engine.c @@ -243,7 +243,8 @@ _output_xcb_setup(int w, int h, int rot, xcb_connection_t *conn, evas_software_xcb_color_init(); evas_software_xcb_outbuf_init(); - ob = evas_software_xcb_outbuf_setup(w, h, rot, OUTBUF_DEPTH_INHERIT, conn + ob = + evas_software_xcb_outbuf_setup(w, h, rot, OUTBUF_DEPTH_INHERIT, conn, screen, draw, vis, cmap, depth, grayscale, max_colors, mask, shape_dither, destination_alpha);