]> git.sur5r.net Git - i3/i3/commitdiff
Fix prototype of con_inside_focused
authorMichael Stapelberg <michael@stapelberg.de>
Fri, 26 Aug 2011 01:23:57 +0000 (03:23 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Fri, 26 Aug 2011 01:23:57 +0000 (03:23 +0200)
include/con.h
src/con.c

index 93497404c3f93dd2b1cbf70f5f158c61970c0be7..e029fd54b124ebb7b057690cafbf9f1a7d4ec237 100644 (file)
@@ -72,7 +72,7 @@ Con *con_inside_floating(Con *con);
  * Checks if the given container is inside a focused container.
  *
  */
-Con *con_inside_focused(Con *con);
+bool con_inside_focused(Con *con);
 
 /**
  * Returns the container with the given client window ID or NULL if no such
index 9cef302faa054f88b8e113d5e2a7d2b96a58f6ab..cd7c2ce08cc6a82813820436f0deb28e76bb8b86 100644 (file)
--- a/src/con.c
+++ b/src/con.c
@@ -362,7 +362,7 @@ Con *con_inside_floating(Con *con) {
  * Checks if the given container is inside a focused container.
  *
  */
-Con *con_inside_focused(Con *con) {
+bool con_inside_focused(Con *con) {
     if (con == focused)
         return true;
     if (!con->parent)