Fixed compiler warnings

This commit is contained in:
Niclas Finne 2011-09-23 15:49:00 +02:00
parent f4f84ffca4
commit a56793f401
2 changed files with 8 additions and 8 deletions

View file

@ -60,9 +60,9 @@ struct sensors_sensor {
int (* status) (int type);
};
struct sensors_sensor *sensors_find(const char *type);
struct sensors_sensor *sensors_next(const struct sensors_sensor *s);
struct sensors_sensor *sensors_first(void);
const struct sensors_sensor *sensors_find(const char *type);
const struct sensors_sensor *sensors_next(const struct sensors_sensor *s);
const struct sensors_sensor *sensors_first(void);
void sensors_changed(const struct sensors_sensor *s);