ecore-x: Remove unused variable in backlight_available code

Summary: We never actually do anything with the _backlight variable
here, so just remove it

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-01-27 10:29:46 -05:00
parent 1135469fa4
commit c971fa845c
1 changed files with 0 additions and 2 deletions

View File

@ -2900,7 +2900,6 @@ EAPI Eina_Bool
ecore_x_randr_output_backlight_available(void) ecore_x_randr_output_backlight_available(void)
{ {
#ifdef ECORE_XCB_RANDR #ifdef ECORE_XCB_RANDR
Ecore_X_Atom _backlight;
xcb_intern_atom_cookie_t acookie; xcb_intern_atom_cookie_t acookie;
xcb_intern_atom_reply_t *areply; xcb_intern_atom_reply_t *areply;
#endif #endif
@ -2923,7 +2922,6 @@ ecore_x_randr_output_backlight_available(void)
} }
else else
{ {
_backlight = areply->atom;
free(areply); free(areply);
return EINA_TRUE; return EINA_TRUE;
} }