Ecore_X(cb): Remove unused variable. Fix uninitialzed variable warning.

SVN revision: 68362
This commit is contained in:
Christopher Michael 2012-02-23 18:32:36 +00:00
parent e94f19333b
commit 8c33537c4a
1 changed files with 2 additions and 2 deletions

View File

@ -1589,9 +1589,9 @@ ecore_x_randr_window_crtcs_get(Ecore_X_Window window,
#ifdef ECORE_XCB_RANDR
Ecore_X_Window root;
Eina_Rectangle w_geo, c_geo;
Ecore_X_Randr_Crtc *crtcs, *ret;
Ecore_X_Randr_Crtc *crtcs, *ret = NULL;
Ecore_X_Randr_Mode mode;
int ncrtcs, noutputs, i, nret = 0;
int ncrtcs, i, nret = 0;
xcb_translate_coordinates_cookie_t cookie;
xcb_translate_coordinates_reply_t *trans;
#endif