2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-08-31 06:15:15 +00:00

Don't print an error message when libsensors returns a feature

we don't know. Just ignore that feature.


git-svn-id: http://lm-sensors.org/svn/lm-sensors/branches/lm-sensors-3.0.0@4774 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
Jean Delvare
2007-09-05 15:56:28 +00:00
parent 1d05faf18b
commit 8b30917c16

View File

@@ -80,10 +80,9 @@ static void sensors_get_available_features(const sensors_chip_name *name,
int indx;
indx = iter->type - first_val - 1;
if (indx < 0 || indx >= size) {
printf("ERROR: Bug in sensors: index out of bound");
return;
}
if (indx < 0 || indx >= size)
/* New feature in libsensors? Ignore. */
continue;
if (sensors_get_value(name, iter->number, &feature_vals[indx]))
printf("ERROR: Can't get %s data!\n", iter->name);