summaryrefslogtreecommitdiffstats
path: root/sway/log.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/log.c')
-rw-r--r--sway/log.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sway/log.c b/sway/log.c
index 49a74e02..2d633abb 100644
--- a/sway/log.c
+++ b/sway/log.c
@@ -88,10 +88,10 @@ bool sway_assert(bool condition, const char* format, ...) {
88/* XXX:DEBUG:XXX */ 88/* XXX:DEBUG:XXX */
89static void container_log(const swayc_t *c) { 89static void container_log(const swayc_t *c) {
90 fprintf(stderr, "focus:%c|", 90 fprintf(stderr, "focus:%c|",
91 c->is_focused ? 'F' : //Focused 91 c->is_focused ? 'F' : // Focused
92 c == active_workspace ? 'W' : //active workspace 92 c == active_workspace ? 'W' : // active workspace
93 c == &root_container ? 'R' : //root 93 c == &root_container ? 'R' : // root
94 'X');//not any others 94 'X');// not any others
95 fprintf(stderr,"(%p)",c); 95 fprintf(stderr,"(%p)",c);
96 fprintf(stderr,"(p:%p)",c->parent); 96 fprintf(stderr,"(p:%p)",c->parent);
97 fprintf(stderr,"(f:%p)",c->focused); 97 fprintf(stderr,"(f:%p)",c->focused);