aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/exec.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/exec.c')
-rw-r--r--sway/commands/exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/exec.c b/sway/commands/exec.c
index dc8d8aac..87d90716 100644
--- a/sway/commands/exec.c
+++ b/sway/commands/exec.c
@@ -8,7 +8,7 @@ struct cmd_results *cmd_exec(int argc, char **argv) {
8 if (!config->active) return cmd_results_new(CMD_DEFER, NULL); 8 if (!config->active) return cmd_results_new(CMD_DEFER, NULL);
9 if (config->reloading) { 9 if (config->reloading) {
10 char *args = join_args(argv, argc); 10 char *args = join_args(argv, argc);
11 wlr_log(WLR_DEBUG, "Ignoring 'exec %s' due to reload", args); 11 sway_log(SWAY_DEBUG, "Ignoring 'exec %s' due to reload", args);
12 free(args); 12 free(args);
13 return cmd_results_new(CMD_SUCCESS, NULL); 13 return cmd_results_new(CMD_SUCCESS, NULL);
14 } 14 }