From 361428d764645920de46ec93ab397577de18ea4e Mon Sep 17 00:00:00 2001 From: moosecrap Date: Thu, 30 Jan 2025 06:19:18 -0800 Subject: [PATCH] Formatting change. --- icx3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icx3.c b/icx3.c index 7bda775..96a965e 100644 --- a/icx3.c +++ b/icx3.c @@ -93,7 +93,7 @@ void print_icx3_temps(char *i2c_dev_path) cur_data = (short)(temp_sensors->data[2*i+1] << 8) | (short)(temp_sensors->data[2*i]); /* temp is reported in tenths of deg C */ cur_temp = (float)cur_data/10; - printf("%s: %.1f C\n", + printf("%s: %+.1f°C\n", icx3_temp_sensor_names[i], cur_temp); }