SF.net SVN: geany-plugins:[952] trunk/geany-plugins/geanylua

ntrel at users.sourceforge.net ntrel at xxxxx
Thu Sep 24 17:02:51 UTC 2009


Revision: 952
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=952&view=rev
Author:   ntrel
Date:     2009-09-24 17:02:51 +0000 (Thu, 24 Sep 2009)

Log Message:
-----------
Fix wrong ABI mismatch error message format.

Modified Paths:
--------------
    trunk/geany-plugins/geanylua/ChangeLog
    trunk/geany-plugins/geanylua/geanylua.c

Modified: trunk/geany-plugins/geanylua/ChangeLog
===================================================================
--- trunk/geany-plugins/geanylua/ChangeLog	2009-09-24 16:56:29 UTC (rev 951)
+++ trunk/geany-plugins/geanylua/ChangeLog	2009-09-24 17:02:51 UTC (rev 952)
@@ -1,6 +1,7 @@
 September 24, 2009 (ntrel)
   Use new plugin_configure_single() instead of using
   plugin_configure() wrongly.
+  Fix wrong ABI mismatch error message format.
 
 September 16, 2009 (ntrel)
   Fix possible memory leak; use keybindings_set_item() so we don't

Modified: trunk/geany-plugins/geanylua/geanylua.c
===================================================================
--- trunk/geany-plugins/geanylua/geanylua.c	2009-09-24 16:56:29 UTC (rev 951)
+++ trunk/geany-plugins/geanylua/geanylua.c	2009-09-24 17:02:51 UTC (rev 952)
@@ -179,7 +179,7 @@
 		return FALSE;
 	}
 	if (*glspi_abi != GEANY_ABI_VERSION) {
-		g_printerr(_("%s: Support library ABI mismatch: %s for %s (should be %s)!\n"),
+		g_printerr(_("%s: Support library ABI mismatch: %d for %s (should be %d)!\n"),
 			PLUGIN_NAME, *glspi_abi, libname, GEANY_ABI_VERSION);
 		fail_init();
 		return FALSE;


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Plugins-Commits mailing list