SF.net SVN: geany:[3077] trunk
ntrel at users.sourceforge.net
ntrel at xxxxx
Mon Oct 13 15:52:34 UTC 2008
Revision: 3077
http://geany.svn.sourceforge.net/geany/?rev=3077&view=rev
Author: ntrel
Date: 2008-10-13 15:52:32 +0000 (Mon, 13 Oct 2008)
Log Message:
-----------
Use geany_debug() instead of g_warning() when a plugin has
unresolved symbols.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/plugins.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-10-13 15:40:12 UTC (rev 3076)
+++ trunk/ChangeLog 2008-10-13 15:52:32 UTC (rev 3077)
@@ -18,6 +18,9 @@
Fix gcc warning, wrap line.
* src/plugins.c:
Tidy up plugin cleanup code.
+ * src/plugins.c:
+ Use geany_debug() instead of g_warning() when a plugin has
+ unresolved symbols.
2008-10-12 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/src/plugins.c
===================================================================
--- trunk/src/plugins.c 2008-10-13 15:40:12 UTC (rev 3076)
+++ trunk/src/plugins.c 2008-10-13 15:52:32 UTC (rev 3077)
@@ -570,7 +570,7 @@
module = g_module_open(fname, G_MODULE_BIND_LOCAL);
if (! module)
{
- g_warning("%s", g_module_error());
+ geany_debug("Can't load plugin: %s", g_module_error());
return NULL;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Commits
mailing list