From f0366907d3c878e1b0e172cb9a91f82e0cd35323 Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Thu, 30 Jun 2011 15:00:58 +0100 Subject: [PATCH] build: egl fix typo introduced by 3b64a439f0 The XEvent argument for event_filter_cb was named "event" but the rest of the function is expecting a variable named "xevent". --- cogl/winsys/cogl-winsys-egl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogl/winsys/cogl-winsys-egl.c b/cogl/winsys/cogl-winsys-egl.c index 462636597..7093ee884 100644 --- a/cogl/winsys/cogl-winsys-egl.c +++ b/cogl/winsys/cogl-winsys-egl.c @@ -252,7 +252,7 @@ find_onscreen_for_xid (CoglContext *context, guint32 xid) } static CoglFilterReturn -event_filter_cb (XEvent *event, void *data) +event_filter_cb (XEvent *xevent, void *data) { CoglContext *context = data;