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".
This commit is contained in:
Robert Bragg 2011-06-30 15:00:58 +01:00
parent 5dff6f6aa1
commit f0366907d3

View File

@ -252,7 +252,7 @@ find_onscreen_for_xid (CoglContext *context, guint32 xid)
} }
static CoglFilterReturn static CoglFilterReturn
event_filter_cb (XEvent *event, void *data) event_filter_cb (XEvent *xevent, void *data)
{ {
CoglContext *context = data; CoglContext *context = data;