From 8a18ba8ae96e281117da255100daab77499fa714 Mon Sep 17 00:00:00 2001 From: Martin Ebner Date: Wed, 23 Oct 2024 11:28:53 +0200 Subject: [PATCH] executed clang-format again --- stc3x_i2c_example_usage.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/stc3x_i2c_example_usage.c b/stc3x_i2c_example_usage.c index 14bb0d3..72e444e 100644 --- a/stc3x_i2c_example_usage.c +++ b/stc3x_i2c_example_usage.c @@ -88,8 +88,9 @@ int main(void) { error = stc3x_measure_gas_concentration_raw(&gas_ticks, &temperature_ticks); if (error) { - printf("Error executing stc3x_measure_gas_concentration_raw(): %i\n", - error); + printf( + "Error executing stc3x_measure_gas_concentration_raw(): %i\n", + error); } else { gas = 100 * ((float)gas_ticks - 16384.0) / 32768.0; temperature = (float)temperature_ticks / 200.0;