SF.net SVN: geany-plugins:[1854] trunk/geany-plugins/geanycfp/src/geanycfp. c

wfraser at users.sourceforge.net wfraser at xxxxx
Sun Jan 16 11:27:46 UTC 2011


Revision: 1854
          http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1854&view=rev
Author:   wfraser
Date:     2011-01-16 11:27:46 +0000 (Sun, 16 Jan 2011)

Log Message:
-----------
gint to gsize for argument on line 577

Modified Paths:
--------------
    trunk/geany-plugins/geanycfp/src/geanycfp.c

Modified: trunk/geany-plugins/geanycfp/src/geanycfp.c
===================================================================
--- trunk/geany-plugins/geanycfp/src/geanycfp.c	2011-01-16 11:12:39 UTC (rev 1853)
+++ trunk/geany-plugins/geanycfp/src/geanycfp.c	2011-01-16 11:27:46 UTC (rev 1854)
@@ -561,6 +561,7 @@
 	guchar* guFoldData=NULL;
 	FileData* fdTemp;
 	GSList * gslTemp=foldingToReApply;
+	gsize gs;
 
 	/* setting fold states may have been delayed until after folding points were calculated before
 	 * paint so wait for a re-paint and check to see if any folding data needs applying
@@ -574,7 +575,7 @@
   		if(utils_str_equal(document_get_current()->file_name,fdTemp->pcFileName)==TRUE)
   		{
   		  /* get fold data */
-			  guFoldData=g_base64_decode(fdTemp->pcFolding,&i);
+			  guFoldData=g_base64_decode(fdTemp->pcFolding,&gs);
 			  /* remove FileData from list needing folds re-applying */
 			  foldingToReApply=g_slist_delete_link(foldingToReApply,gslTemp);
 			  break;


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