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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/commands/input/tap.c b/sway/commands/input/tap.c
index 18a54087..8547c0cd 100644
--- a/sway/commands/input/tap.c
+++ b/sway/commands/input/tap.c
@@ -1,5 +1,6 @@
1#include <string.h> 1#include <string.h>
2#include <strings.h> 2#include <strings.h>
3#include "sway/config.h"
3#include "sway/commands.h" 4#include "sway/commands.h"
4#include "sway/input/input-manager.h" 5#include "sway/input/input-manager.h"
5#include "log.h" 6#include "log.h"
@@ -27,6 +28,6 @@ struct cmd_results *input_cmd_tap(int argc, char **argv) {
27 28
28 sway_log(L_DEBUG, "apply-tap for device: %s", 29 sway_log(L_DEBUG, "apply-tap for device: %s",
29 current_input_config->identifier); 30 current_input_config->identifier);
30 input_cmd_apply(new_config); 31 apply_input_config(new_config);
31 return cmd_results_new(CMD_SUCCESS, NULL, NULL); 32 return cmd_results_new(CMD_SUCCESS, NULL, NULL);
32} 33}