diff options
author | Tony Crisci <tony@dubstepdish.com> | 2018-04-03 13:10:51 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2018-04-03 13:10:51 -0400 |
commit | fcbcbf34adbcfbfc4107c5e0050639828265e122 (patch) | |
tree | abf10e145c74576c180bcfc3a7922f773b2cf223 /sway/tree/container.c | |
parent | 5f4761c4f40f5d6ec550ccabaebe0f990b6e8bbc (diff) |
make container_finish private
Diffstat (limited to 'sway/tree/container.c')
-rw-r--r-- | sway/tree/container.c | 2 |
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) { return c; } -struct sway_container *container_finish(struct sway_container *cont) { +static struct sway_container *container_finish(struct sway_container *cont) { if (cont == NULL) { return NULL; } |