diff options
author | nicowallmeier <nicowallmeier@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2004-02-14 12:07:27 +0000 |
---|---|---|
committer | nicowallmeier <nicowallmeier@3ae390bd-cb1e-0410-b409-cd5a39f66f1f> | 2004-02-14 12:07:27 +0000 |
commit | 4b5daaaefb564087f9b19d1dc81b035b8ea8ee06 (patch) | |
tree | 44ef4d00279cbf8e0dec2857b4f9917153fe289c | |
parent | 02f87e08e6fa94ff943c84768197fba5f719a951 (diff) | |
download | lcd4linux-4b5daaaefb564087f9b19d1dc81b035b8ea8ee06.tar.gz |
[lcd4linux @ 2004-02-14 12:07:27 by nicowallmeier]
minor bugfix
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@364 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to '')
-rw-r--r-- | plugin_i2c_sensors.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/plugin_i2c_sensors.c b/plugin_i2c_sensors.c index 1adea2f..0c08b81 100644 --- a/plugin_i2c_sensors.c +++ b/plugin_i2c_sensors.c @@ -1,4 +1,4 @@ -/* $Id: plugin_i2c_sensors.c,v 1.9 2004/02/14 11:56:17 reinelt Exp $ +/* $Id: plugin_i2c_sensors.c,v 1.10 2004/02/14 12:07:27 nicowallmeier Exp $ * * I2C sensors plugin * @@ -22,6 +22,9 @@ * * * $Log: plugin_i2c_sensors.c,v $ + * Revision 1.10 2004/02/14 12:07:27 nicowallmeier + * minor bugfix + * * Revision 1.9 2004/02/14 11:56:17 reinelt * M50530 driver ported * changed lots of 'char' to 'unsigned char' @@ -265,6 +268,10 @@ void my_i2c_sensors_path(char *method) struct dirent *dir; struct dirent *file; const char *base; + char dname[64]; + DIR *fd1; + DIR *fd2; + int done; if (!strcmp(method, "sysfs")) { base="/sys/bus/i2c/devices/"; @@ -275,10 +282,6 @@ void my_i2c_sensors_path(char *method) return; } - char dname[64]; - DIR *fd1; - DIR *fd2; - int done; fd1 = opendir(base); if (!fd1) { |