diff options
author | Ryan Dwyer <RyanDwyer@users.noreply.github.com> | 2018-07-10 22:05:33 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-10 22:05:33 +1000 |
commit | 8afe68f92063ff6db061f721868f601b2fc20191 (patch) | |
tree | 751b5569e4e05149c7a7cd7e0d8084be5ff62063 /sway/commands/output | |
parent | c1bb73f8652f367ee7b7b82f5fc13aff51145358 (diff) | |
parent | 23c1c26c3fedf5470dbee9fe97c2374a48588863 (diff) | |
download | sway-8afe68f92063ff6db061f721868f601b2fc20191.tar.xz |
Merge pull request #2232 from ianyfan/ipc
Add some missing ipc message types from i3
Diffstat (limited to 'sway/commands/output')
-rw-r--r-- | sway/commands/output/background.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/output/background.c b/sway/commands/output/background.c index c2c138f8..4ed56c2a 100644 --- a/sway/commands/output/background.c +++ b/sway/commands/output/background.c @@ -80,7 +80,7 @@ struct cmd_results *output_cmd_background(int argc, char **argv) { if (config->reading && *src != '/') { // src file is inside configuration dir - char *conf = strdup(config->current_config); + char *conf = strdup(config->current_config_path); if (!conf) { wlr_log(WLR_ERROR, "Failed to duplicate string"); free(src); |