]> git.sur5r.net Git - i3/i3/blobdiff - src/output.c
format **/*.c with clang-format-3.5
[i3/i3] / src / output.c
index fe8d49837adc0dc3c517850dc0dc705ade1f7694..b037335a02621d3fa4ae9eefa187f7925635ec6b 100644 (file)
@@ -4,7 +4,7 @@
  * vim:ts=4:sw=4:expandtab
  *
  * i3 - an improved dynamic tiling window manager
- * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
+ * © 2009-2013 Michael Stapelberg and contributors (see also: LICENSE)
  *
  * output.c: Output (monitor) related functions.
  *
 Con *output_get_content(Con *output) {
     Con *child;
 
-    TAILQ_FOREACH(child, &(output->nodes_head), nodes)
+    TAILQ_FOREACH (child, &(output->nodes_head), nodes)
         if (child->type == CT_CON)
             return child;
 
-    ELOG("output_get_content() called on non-output %p\n", output);
-    assert(false);
+    return NULL;
 }