diff --git a/Conky.kdevelop b/Conky.kdevelop
index 86c6d320..748a1019 100644
--- a/Conky.kdevelop
+++ b/Conky.kdevelop
@@ -48,7 +48,7 @@
- --enable-debug=full --prefix=/usr --enable-mpd --disable-xft --enable-seti --enable-double-buffer --disable-own-window --enable-metar --enable-mldonkey
+ --enable-debug=full --prefix=/usr --enable-mpd --enable-xft --enable-seti --enable-double-buffer --enable-own-window --enable-metar --enable-mldonkey
debug
kdevgccoptions
kdevgppoptions
diff --git a/app-admin/conky/conky-1.9999.ebuild b/app-admin/conky/conky-1.9999.ebuild
index 8b65f2fd..6bb2e7a4 100644
--- a/app-admin/conky/conky-1.9999.ebuild
+++ b/app-admin/conky/conky-1.9999.ebuild
@@ -1,4 +1,4 @@
-# CVS ebuild for Conky
+# CVS ebuild for Conky, thanks to Hopeless
# $Header$
ECVS_SERVER="cvs.sourceforge.net:/cvsroot/conky"
diff --git a/linux.c b/linux.c
index 380b90ae..99b7aaf2 100644
--- a/linux.c
+++ b/linux.c
@@ -503,8 +503,9 @@ open_i2c_sensor(const char *dev, const char *type, int n, int *div,
/* open file */
fd = open(path, O_RDONLY);
- if (fd < 0)
- ERR("can't open '%s': %s", path, strerror(errno));
+ if (fd < 0) {
+ CRIT_ERR("can't open '%s': %s", path, strerror(errno));
+ }
if (strcmp(type, "in") == 0 || strcmp(type, "temp") == 0
|| strcmp(type, "tempf") == 0)