summaryrefslogtreecommitdiffstats
path: root/sway/debug_log.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/debug_log.c')
-rw-r--r--sway/debug_log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/debug_log.c b/sway/debug_log.c
index 6fd6422f..761dca6c 100644
--- a/sway/debug_log.c
+++ b/sway/debug_log.c
@@ -26,7 +26,7 @@ static void container_log(const swayc_t *c, int depth) {
26 fprintf(stderr,"|(%p)",c); 26 fprintf(stderr,"|(%p)",c);
27 fprintf(stderr,"(p:%-8p)",c->parent); 27 fprintf(stderr,"(p:%-8p)",c->parent);
28 fprintf(stderr,"(f:%-8p)",c->focused); 28 fprintf(stderr,"(f:%-8p)",c->focused);
29 fprintf(stderr,"(h:%2ld)",c->handle); 29 fprintf(stderr,"(h:%2" PRIuPTR ")",c->handle);
30 fprintf(stderr,"Type:%-4s|", 30 fprintf(stderr,"Type:%-4s|",
31 c->type == C_ROOT ? "root" : 31 c->type == C_ROOT ? "root" :
32 c->type == C_OUTPUT ? "op" : 32 c->type == C_OUTPUT ? "op" :