aboutsummaryrefslogtreecommitdiffstats
path: root/sway/input/keyboard.c
diff options
context:
space:
mode:
authorLibravatar Tony Crisci <tony@dubstepdish.com>2018-04-02 13:23:43 -0400
committerLibravatar Tony Crisci <tony@dubstepdish.com>2018-04-02 13:23:43 -0400
commit5e024278a62e6fb00a0521240244c428d2382984 (patch)
treed9010d33d4d576297cc5e40d41bed4bb7bf5631a /sway/input/keyboard.c
parentdont copy input config (diff)
parentMerge pull request #1697 from RedSoxFan/back-and-forth (diff)
downloadsway-5e024278a62e6fb00a0521240244c428d2382984.tar.gz
sway-5e024278a62e6fb00a0521240244c428d2382984.tar.zst
sway-5e024278a62e6fb00a0521240244c428d2382984.zip
Merge branch 'wlroots' into seat-fixes
Diffstat (limited to 'sway/input/keyboard.c')
-rw-r--r--sway/input/keyboard.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/input/keyboard.c b/sway/input/keyboard.c
index 41068652..dbb0c359 100644
--- a/sway/input/keyboard.c
+++ b/sway/input/keyboard.c
@@ -97,8 +97,8 @@ static void keyboard_execute_command(struct sway_keyboard *keyboard,
97 config->handler_context.seat = keyboard->seat_device->sway_seat; 97 config->handler_context.seat = keyboard->seat_device->sway_seat;
98 struct cmd_results *results = execute_command(binding->command, NULL); 98 struct cmd_results *results = execute_command(binding->command, NULL);
99 if (results->status != CMD_SUCCESS) { 99 if (results->status != CMD_SUCCESS) {
100 wlr_log(L_DEBUG, "could not run command for binding: %s", 100 wlr_log(L_DEBUG, "could not run command for binding: %s (%s)",
101 binding->command); 101 binding->command, results->error);
102 } 102 }
103 free_cmd_results(results); 103 free_cmd_results(results);
104} 104}