aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/input/pointer_accel.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/input/pointer_accel.c')
-rw-r--r--sway/commands/input/pointer_accel.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/commands/input/pointer_accel.c b/sway/commands/input/pointer_accel.c
index 171063aa..8bbd0724 100644
--- a/sway/commands/input/pointer_accel.c
+++ b/sway/commands/input/pointer_accel.c
@@ -20,6 +20,7 @@ struct cmd_results *input_cmd_pointer_accel(int argc, char **argv) {
20 20
21 float pointer_accel = atof(argv[0]); 21 float pointer_accel = atof(argv[0]);
22 if (pointer_accel < -1 || pointer_accel > 1) { 22 if (pointer_accel < -1 || pointer_accel > 1) {
23 free_input_config(new_config);
23 return cmd_results_new(CMD_INVALID, "pointer_accel", 24 return cmd_results_new(CMD_INVALID, "pointer_accel",
24 "Input out of range [-1, 1]"); 25 "Input out of range [-1, 1]");
25 } 26 }