diff options
author | Daniel Lockyer <thisisdaniellockyer@gmail.com> | 2016-04-29 18:27:49 +0100 |
---|---|---|
committer | Daniel Lockyer <thisisdaniellockyer@gmail.com> | 2016-04-29 18:27:49 +0100 |
commit | 01c2b5f2d658c8992d5351c1ef0e2e23a0729fcd (patch) | |
tree | 5b11e9651234c140cc9f29777040a904a7d73f15 | |
parent | b8722ecd5f43c2c6f132809595109e9cb5fbfec6 (diff) |
sway/config.c: move free call to after sway_log
-rw-r--r-- | sway/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/config.c b/sway/config.c index 41879b87..9ce73ceb 100644 --- a/sway/config.c +++ b/sway/config.c @@ -267,8 +267,8 @@ static char *get_config_path(void) { strcpy(config_home, home); strcat(config_home, "/.config"); setenv("XDG_CONFIG_HOME", config_home, 1); - free(config_home); sway_log(L_DEBUG, "Set XDG_CONFIG_HOME to %s", config_home); + free(config_home); } wordexp_t p; |