diff options
author | Thomas Wouters <thomas@kangaroot.net> | 2015-09-08 14:37:20 +0200 |
---|---|---|
committer | Thomas Wouters <thomas@kangaroot.net> | 2015-09-08 14:37:20 +0200 |
commit | c3f76f8785eff972f586eef89bd5fda8b31c3696 (patch) | |
tree | a5268a417f581fe2827ac8d91c03a537f3790621 /sway | |
parent | 0de29d824741bd332e0e282612ef3f8e14f01f61 (diff) | |
download | sway-c3f76f8785eff972f586eef89bd5fda8b31c3696.tar.xz |
fix outut typo
Diffstat (limited to 'sway')
-rw-r--r-- | sway/config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/config.c b/sway/config.c index 5ece2810..6c8fe8c1 100644 --- a/sway/config.c +++ b/sway/config.c @@ -36,7 +36,7 @@ static void free_mode(struct sway_mode *mode) { free(mode); } -static void free_outut_config(struct output_config *oc) { +static void free_output_config(struct output_config *oc) { free(oc->name); free(oc); } @@ -67,7 +67,7 @@ static void free_config(struct sway_config *config) { list_free(config->workspace_outputs); for (i = 0; i < config->output_configs->length; ++i) { - free_outut_config(config->output_configs->items[i]); + free_output_config(config->output_configs->items[i]); } list_free(config->output_configs); free(config); |