From 00610801ba4e597cc80dc436cf036b670ca95c67 Mon Sep 17 00:00:00 2001 From: project-repo Date: Thu, 17 Aug 2023 20:30:28 +0200 Subject: [PATCH] Apply clang-format --- input_manager.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/input_manager.c b/input_manager.c index 630b530..fcdd684 100644 --- a/input_manager.c +++ b/input_manager.c @@ -230,9 +230,9 @@ input_manager_merge_input_configs(struct cg_input_config *cfg1, out_cfg->repeat_rate = cfg1->repeat_rate; } if(cfg1->calibration_matrix.configured == false) { - out_cfg->calibration_matrix=cfg2->calibration_matrix; + out_cfg->calibration_matrix = cfg2->calibration_matrix; } else { - out_cfg->calibration_matrix=cfg1->calibration_matrix; + out_cfg->calibration_matrix = cfg1->calibration_matrix; } return out_cfg; }