From 9273f67734eeb8d303e63c3af6975482d3f58e80 Mon Sep 17 00:00:00 2001 From: Albert Safin Date: Fri, 9 Nov 2018 18:43:25 +0700 Subject: [PATCH] Log window id in state_for_frame() --- src/x.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/x.c b/src/x.c index c0c0961e..45601337 100644 --- a/src/x.c +++ b/src/x.c @@ -94,7 +94,7 @@ static con_state *state_for_frame(xcb_window_t window) { return state; /* TODO: better error handling? */ - ELOG("No state found\n"); + ELOG("No state found for window 0x%08x\n", window); assert(false); return NULL; } -- 2.39.5