summaryrefslogtreecommitdiffstats
path: root/sway/commands/input/tap.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/input/tap.c')
-rw-r--r--sway/commands/input/tap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sway/commands/input/tap.c b/sway/commands/input/tap.c
index 8547c0cd..ecab9a5b 100644
--- a/sway/commands/input/tap.c
+++ b/sway/commands/input/tap.c
@@ -6,7 +6,7 @@
6#include "log.h" 6#include "log.h"
7 7
8struct cmd_results *input_cmd_tap(int argc, char **argv) { 8struct cmd_results *input_cmd_tap(int argc, char **argv) {
9 sway_log(L_DEBUG, "tap for device: %s", current_input_config->identifier); 9 wlr_log(L_DEBUG, "tap for device: %s", current_input_config->identifier);
10 struct cmd_results *error = NULL; 10 struct cmd_results *error = NULL;
11 if ((error = checkarg(argc, "tap", EXPECTED_AT_LEAST, 1))) { 11 if ((error = checkarg(argc, "tap", EXPECTED_AT_LEAST, 1))) {
12 return error; 12 return error;
@@ -26,7 +26,7 @@ struct cmd_results *input_cmd_tap(int argc, char **argv) {
26 "Expected 'tap <enabled|disabled>'"); 26 "Expected 'tap <enabled|disabled>'");
27 } 27 }
28 28
29 sway_log(L_DEBUG, "apply-tap for device: %s", 29 wlr_log(L_DEBUG, "apply-tap for device: %s",
30 current_input_config->identifier); 30 current_input_config->identifier);
31 apply_input_config(new_config); 31 apply_input_config(new_config);
32 return cmd_results_new(CMD_SUCCESS, NULL, NULL); 32 return cmd_results_new(CMD_SUCCESS, NULL, NULL);