aboutsummaryrefslogtreecommitdiffstats
path: root/plugin_i2c_sensors.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2006-09-07 09:06:25 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2006-09-07 09:06:25 +0000
commit940f0517d1272e195e7b14be567b9002811f6146 (patch)
treefdd1939c5cede084ae049b609076bb8971fbc896 /plugin_i2c_sensors.c
parent454ea5c893f90f232d33e0bc50fc8d0b1617678b (diff)
downloadlcd4linux-940f0517d1272e195e7b14be567b9002811f6146.tar.gz
[lcd4linux @ 2006-09-07 09:06:25 by reinelt]
lots of wrong printf formats corrected (thanks to Ernst Bachmann) git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@708 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'plugin_i2c_sensors.c')
-rw-r--r--plugin_i2c_sensors.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugin_i2c_sensors.c b/plugin_i2c_sensors.c
index b3bbc2f..7dee1e9 100644
--- a/plugin_i2c_sensors.c
+++ b/plugin_i2c_sensors.c
@@ -1,4 +1,4 @@
-/* $Id: plugin_i2c_sensors.c,v 1.25 2006/02/25 13:36:33 geronet Exp $
+/* $Id: plugin_i2c_sensors.c,v 1.26 2006/09/07 09:06:25 reinelt Exp $
*
* I2C sensors plugin
*
@@ -23,6 +23,9 @@
*
*
* $Log: plugin_i2c_sensors.c,v $
+ * Revision 1.26 2006/09/07 09:06:25 reinelt
+ * lots of wrong printf formats corrected (thanks to Ernst Bachmann)
+ *
* Revision 1.25 2006/02/25 13:36:33 geronet
* updated indent.sh, applied coding style
*
@@ -414,7 +417,7 @@ static int configure_i2c_sensors(void)
} else if (strncmp(path, "/proc", 5) == 0) {
parse_i2c_sensors = parse_i2c_sensors_procfs;
} else {
- error("i2c_sensors: unknown path %s, should start with /sys or /proc");
+ error("i2c_sensors: unknown path %s, should start with /sys or /proc", path);
configured = -1;
return configured;
}