'Fix' codacy complaining about unused value
Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
e7982b7aba
commit
7cf99719b5
2
event.c
2
event.c
|
@ -864,7 +864,7 @@ event_handle_randr_output_change_notify(xcb_randr_notify_event_t *ev)
|
||||||
xcb_randr_output_t output = ev->u.oc.output;
|
xcb_randr_output_t output = ev->u.oc.output;
|
||||||
uint8_t connection = ev->u.oc.connection;
|
uint8_t connection = ev->u.oc.connection;
|
||||||
const char *connection_str = NULL;
|
const char *connection_str = NULL;
|
||||||
xcb_randr_get_output_info_reply_t *info = NULL;
|
xcb_randr_get_output_info_reply_t *info;
|
||||||
lua_State *L = globalconf_get_lua_State();
|
lua_State *L = globalconf_get_lua_State();
|
||||||
|
|
||||||
/* The following explicitly uses XCB_CURRENT_TIME since we want to know
|
/* The following explicitly uses XCB_CURRENT_TIME since we want to know
|
||||||
|
|
Loading…
Reference in New Issue