summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2018-02-06 18:54:10 -0500
committerLibravatar Tony Crisci <tony@dubstepdish.com>2018-02-06 18:54:10 -0500
commit7d8f2c52aa96e4cbe55fe6fb00895401a85f95b6 (patch)
tree3d8d78139faf1b7cf9b60047f95f1cf83f365b05
parentbasic focus overhaul (diff)
downloadsway-7d8f2c52aa96e4cbe55fe6fb00895401a85f95b6.tar.gz
sway-7d8f2c52aa96e4cbe55fe6fb00895401a85f95b6.tar.zst
sway-7d8f2c52aa96e4cbe55fe6fb00895401a85f95b6.zip
make index_child static
-rw-r--r--sway/tree/layout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/layout.c b/sway/tree/layout.c
index 45f8c3ae..16d5cbc5 100644
--- a/sway/tree/layout.c
+++ b/sway/tree/layout.c
@@ -61,7 +61,7 @@ void init_layout(void) {
61 &root_container.sway_root->output_layout_change); 61 &root_container.sway_root->output_layout_change);
62} 62}
63 63
64int index_child(const swayc_t *child) { 64static int index_child(const swayc_t *child) {
65 // TODO handle floating 65 // TODO handle floating
66 swayc_t *parent = child->parent; 66 swayc_t *parent = child->parent;
67 int i, len; 67 int i, len;