aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/set.c
diff options
context:
space:
mode:
authorLibravatar Dominique Martinet <asmadeus@codewreck.org>2018-01-05 22:32:51 +0100
committerLibravatar Dominique Martinet <asmadeus@codewreck.org>2018-01-05 23:39:46 +0100
commit67985e903188a464e602d04f9ed218bd397f5ab1 (patch)
tree3589175749c9a2ed746b0cc280ab3ccfb33125e9 /sway/commands/set.c
parentMerge pull request #1554 from martinetd/cmd_set (diff)
downloadsway-67985e903188a464e602d04f9ed218bd397f5ab1.tar.gz
sway-67985e903188a464e602d04f9ed218bd397f5ab1.tar.zst
sway-67985e903188a464e602d04f9ed218bd397f5ab1.zip
sway: change all sway_log to wlr_log
Diffstat (limited to 'sway/commands/set.c')
-rw-r--r--sway/commands/set.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/set.c b/sway/commands/set.c
index dcd928ba..856c73e7 100644
--- a/sway/commands/set.c
+++ b/sway/commands/set.c
@@ -33,7 +33,7 @@ struct cmd_results *cmd_set(int argc, char **argv) {
33 } 33 }
34 34
35 if (argv[0][0] != '$') { 35 if (argv[0][0] != '$') {
36 sway_log(L_INFO, "Warning: variable '%s' doesn't start with $", argv[0]); 36 wlr_log(L_INFO, "Warning: variable '%s' doesn't start with $", argv[0]);
37 37
38 size_t size = snprintf(NULL, 0, "$%s", argv[0]); 38 size_t size = snprintf(NULL, 0, "$%s", argv[0]);
39 tmp = malloc(size + 1); 39 tmp = malloc(size + 1);