2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-08-31 14:25:39 +00:00

Fix % in format.

git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@6086 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Jean Delvare
2012-11-06 19:44:01 +00:00
parent d1d5799d51
commit 717e87b4d2

View File

@@ -674,7 +674,7 @@ static void print_chip_humidity(const sensors_chip_name *name,
if ((label = sensors_get_label(name, feature))
&& !sensors_get_value(name, subfeature->number, &humidity)) {
print_label(label, label_size);
printf("%6.1f \%RH\n", humidity);
printf("%6.1f %%RH\n", humidity);
}
free(label);
}