Revision: 1070
http://geeqie.svn.sourceforge.net/geeqie/?rev=1070&view=rev
Author: zas_
Date: 2008-08-20 22:19:35 +0000 (Wed, 20 Aug 2008)
Log Message:
-----------
Do not return values of void functions. Reported by Jeffery Small.
Modified Paths:
--------------
trunk/src/view_dir.c
Modified: trunk/src/view_dir.c
===================================================================
--- trunk/src/view_dir.c 2008-08-20 20:36:36 UTC (rev 1069)
+++ trunk/src/view_dir.c 2008-08-20 22:19:35 UTC (rev 1070)
@@ -146,8 +146,8 @@
{
switch(vd->type)
{
- case DIRVIEW_LIST: return vdlist_refresh(vd);
- case DIRVIEW_TREE: return vdtree_refresh(vd);
+ case DIRVIEW_LIST: vdlist_refresh(vd);
+ case DIRVIEW_TREE: vdtree_refresh(vd);
}
}
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Geeqie-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geeqie-svn