Revision: 5814 http://geany.svn.sourceforge.net/geany/?rev=5814&view=rev Author: eht16 Date: 2011-05-22 10:00:53 +0000 (Sun, 22 May 2011)
Log Message: ----------- Remove unused variables (suggested by Eugene Arshinov).
Modified Paths: -------------- trunk/ChangeLog trunk/src/stash.c
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2011-05-22 09:59:30 UTC (rev 5813) +++ trunk/ChangeLog 2011-05-22 10:00:53 UTC (rev 5814) @@ -2,6 +2,8 @@
* src/about.c, src/build.c, tagmanager/tm_workspace.c: Remove unused variables (patch by Eugene Arshinov, thanks). + * src/stash.c: + Remove unused variables (suggested by Eugene Arshinov).
2011-05-12 Colomban Wendling <colomban(at)geany(dot)org>
Modified: trunk/src/stash.c =================================================================== --- trunk/src/stash.c 2011-05-22 09:59:30 UTC (rev 5813) +++ trunk/src/stash.c 2011-05-22 10:00:53 UTC (rev 5814) @@ -777,11 +777,9 @@ va_start(args, enum_id); while (1) { - gint dummy; - if (!va_arg(args, gpointer)) break; - dummy = va_arg(args, gint); + va_arg(args, gint); count++; } va_end(args);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.