xcb: xcb_error() no longer prefixes error message with "XCB: "

This commit is contained in:
Daniel Eklöf 2019-01-16 16:27:25 +01:00
parent bf558eca1b
commit 77f8e6fa28
3 changed files with 4 additions and 4 deletions

2
bar.c
View file

@ -579,7 +579,7 @@ run(struct bar_run_context *run_ctx)
{
switch (XCB_EVENT_RESPONSE_TYPE(e)) {
case 0:
LOG_ERR("%s", xcb_error((const xcb_generic_error_t *)e));
LOG_ERR("XCB: %s", xcb_error((const xcb_generic_error_t *)e));
break;
case XCB_EXPOSE: