From 94dbe3b89261220199cde4abf34429c482aa2e4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 1 Jan 2019 20:35:36 +0100 Subject: [PATCH] bar: ignore events we're not interrested in --- bar.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bar.c b/bar.c index cd8106e..c39e29c 100644 --- a/bar.c +++ b/bar.c @@ -622,10 +622,13 @@ run(struct bar_run_context *run_ctx) } case XCB_DESTROY_NOTIFY: + LOG_WARN("unimplemented event: XCB_DESTROY_NOTIFY"); + break; + case XCB_REPARENT_NOTIFY: case XCB_CONFIGURE_NOTIFY: case XCB_MAP_NOTIFY: - LOG_WARN("unimplemented event: %d", XCB_EVENT_RESPONSE_TYPE(e)); + /* Just ignore */ break; default: