aboutsummaryrefslogtreecommitdiffstats
path: root/e-util/e-plugin.c
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-12-08 09:59:03 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-12-08 09:59:03 +0800
commit9e72aaecbb64949ef6e9bacdf7e06f57ea38726e (patch)
treecbfd8d280ae2a67dad189e652ada6abea518e6aa /e-util/e-plugin.c
parentf055315218f4ff5d071671bee29b8fbe0e224fa2 (diff)
downloadgsoc2013-evolution-9e72aaecbb64949ef6e9bacdf7e06f57ea38726e.tar.gz
gsoc2013-evolution-9e72aaecbb64949ef6e9bacdf7e06f57ea38726e.tar.zst
gsoc2013-evolution-9e72aaecbb64949ef6e9bacdf7e06f57ea38726e.zip
kill warning if we can't open the path.
2004-12-08 Not Zed <NotZed@Ximian.com> * e-plugin.c (e_plugin_load_plugins): kill warning if we can't open the path. svn path=/trunk/; revision=28084
Diffstat (limited to 'e-util/e-plugin.c')
-rw-r--r--e-util/e-plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-plugin.c b/e-util/e-plugin.c
index 5948de45d8..0d74043b4d 100644
--- a/e-util/e-plugin.c
+++ b/e-util/e-plugin.c
@@ -452,7 +452,7 @@ e_plugin_load_plugins(void)
dir = opendir(path);
if (dir == NULL) {
- g_warning("Could not find plugin path: %s", path);
+ /*g_warning("Could not find plugin path: %s", path);*/
continue;
}