Ecore_X (xcb): Patch from Daniel Willmann to fix the type used for

calloc of randr_output_change event.



SVN revision: 77401
This commit is contained in:
Christopher Michael 2012-10-04 05:49:28 +00:00
parent add842257d
commit 492eb02253
1 changed files with 1 additions and 1 deletions

View File

@ -1939,7 +1939,7 @@ _ecore_xcb_event_handle_randr_output_change(xcb_generic_event_t *event)
#ifdef ECORE_XCB_RANDR
ev = (xcb_randr_notify_event_t *)event;
if (!(e = calloc(1, sizeof(Ecore_X_Event_Randr_Crtc_Change))))
if (!(e = calloc(1, sizeof(Ecore_X_Event_Randr_Output_Change))))
return;
e->win = ev->u.oc.window;