aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands/input/calibration_matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'sway/commands/input/calibration_matrix.c')
-rw-r--r--sway/commands/input/calibration_matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/commands/input/calibration_matrix.c b/sway/commands/input/calibration_matrix.c
index ac15d152..9ac2bd7f 100644
--- a/sway/commands/input/calibration_matrix.c
+++ b/sway/commands/input/calibration_matrix.c
@@ -27,7 +27,7 @@ struct cmd_results *input_cmd_calibration_matrix(int argc, char **argv) {
27 for (int i = 0; i < split->length; ++i) { 27 for (int i = 0; i < split->length; ++i) {
28 char *item = split->items[i]; 28 char *item = split->items[i];
29 float x = parse_float(item); 29 float x = parse_float(item);
30 if (x != x) { 30 if (isnan(x)) {
31 return cmd_results_new(CMD_FAILURE, "calibration_matrix: unable to parse float: %s", item); 31 return cmd_results_new(CMD_FAILURE, "calibration_matrix: unable to parse float: %s", item);
32 } 32 }
33 parsed[i] = x; 33 parsed[i] = x;