Skip to content

Commit

Permalink
executed clang-format again
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinEbnerSensirion committed Oct 23, 2024
1 parent 5c49b60 commit 8a18ba8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions stc3x_i2c_example_usage.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8a18ba8

Please sign in to comment.