From 76f9e15130429c4601bf5d6445b7f6b37c3793eb Mon Sep 17 00:00:00 2001 From: Zedhugh Chen Date: Fri, 21 Nov 2025 17:47:40 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=20monitor=20=E4=B8=AD=20tag?= =?UTF-8?q?=20mask=20=E6=98=BE=E7=A4=BA=E6=A0=BC=E5=BC=8F(%b=20=E6=A0=BC?= =?UTF-8?q?=E5=BC=8F=E4=BB=85=20gcc=20=E7=BC=96=E8=AF=91=E5=99=A8=E6=94=AF?= =?UTF-8?q?=E6=8C=81)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/wm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wm.c b/src/wm.c index 93b91e8..78c7d63 100644 --- a/src/wm.c +++ b/src/wm.c @@ -320,7 +320,7 @@ static void debug_show_monitor_list(void) { m->name, wm.bar_height); printf("tag extend: [%d, %d]\n", m->tag_extent.start, m->tag_extent.end); for (const tag_t *tag = m->tag_list; tag; tag = tag->next) { - printf("tag[%u]: 0b%09b, \"%s\", [%d, %d]\n", tag->index, tag->mask, + printf("tag[%u]: %4u, \"%s\", [%d, %d]\n", tag->index, tag->mask, tag->name, tag->bar_extent.start, tag->bar_extent.end); } }