aboutsummaryrefslogtreecommitdiffstats
path: root/sway/tree/container.c
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2018-04-03 13:10:51 -0400
committerLibravatar Tony Crisci <tony@dubstepdish.com>2018-04-03 13:10:51 -0400
commitfcbcbf34adbcfbfc4107c5e0050639828265e122 (patch)
treeabf10e145c74576c180bcfc3a7922f773b2cf223 /sway/tree/container.c
parentunify workspace create functions (diff)
downloadsway-fcbcbf34adbcfbfc4107c5e0050639828265e122.tar.gz
sway-fcbcbf34adbcfbfc4107c5e0050639828265e122.tar.zst
sway-fcbcbf34adbcfbfc4107c5e0050639828265e122.zip
make container_finish private
Diffstat (limited to 'sway/tree/container.c')
-rw-r--r--sway/tree/container.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/tree/container.c b/sway/tree/container.c
index 7ccd43ea..7cc8caa6 100644
--- a/sway/tree/container.c
+++ b/sway/tree/container.c
@@ -77,7 +77,7 @@ struct sway_container *container_create(enum sway_container_type type) {
77 return c; 77 return c;
78} 78}
79 79
80struct sway_container *container_finish(struct sway_container *cont) { 80static struct sway_container *container_finish(struct sway_container *cont) {
81 if (cont == NULL) { 81 if (cont == NULL) {
82 return NULL; 82 return NULL;
83 } 83 }