diff options
author | taiyu <[email protected]> | 2015-08-20 05:06:22 -0700 |
---|---|---|
committer | taiyu <[email protected]> | 2015-08-20 05:06:22 -0700 |
commit | f5fde7c45c04b02406eabc34cbb4248189c6a26e (patch) | |
tree | 120cbb51e8e16346743b9408e17452ab5e81d0e2 /sway/log.c | |
parent | f6e002fb8b664d80ef10126f6a204ffbb2f192df (diff) |
style
Diffstat (limited to 'sway/log.c')
-rw-r--r-- | sway/log.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -88,10 +88,10 @@ bool sway_assert(bool condition, const char* format, ...) { /* XXX:DEBUG:XXX */ static void container_log(const swayc_t *c) { fprintf(stderr, "focus:%c|", - c->is_focused ? 'F' : //Focused - c == active_workspace ? 'W' : //active workspace - c == &root_container ? 'R' : //root - 'X');//not any others + c->is_focused ? 'F' : // Focused + c == active_workspace ? 'W' : // active workspace + c == &root_container ? 'R' : // root + 'X');// not any others fprintf(stderr,"(%p)",c); fprintf(stderr,"(p:%p)",c->parent); fprintf(stderr,"(f:%p)",c->focused); |