Merge branch 'fix-warning'

This commit is contained in:
Michael Stapelberg 2011-08-26 03:24:10 +02:00
commit ed6f5d214c
2 changed files with 2 additions and 2 deletions

View 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

View File

@ -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)