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

Display adm1025 VID with 3 decimal places.

git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@2630 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Jean Delvare
2004-07-04 07:36:57 +00:00
parent 1b99a9c4ad
commit 3ca3fbdd55

View File

@@ -1189,7 +1189,7 @@ void print_adm1025(const sensors_chip_name *name)
!sensors_get_feature(*name,SENSORS_ADM1025_VID,&cur)) {
if (valid) {
print_label(label,10);
printf("%+6.2f V\n",cur);
printf("%+6.3f V\n", cur);
}
} else
printf("ERROR: Can't get VID data!\n");