Prevent a compiler warning.
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Tue, 1 Jan 2008 14:50:02 +0000 (14:50 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Tue, 1 Jan 2008 14:50:02 +0000 (14:50 +0000)
git-svn-id: http://svn.voria.com/code@1244 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-core/trunk/src/synfig/timepointcollect.cpp

index abbfc76..7d857d8 100644 (file)
@@ -146,7 +146,7 @@ synfig::activepoint_collect(set<Activepoint, std::less<UniqueID> >& /*activepoin
        const TimePointSet& timepoint_set(node->get_times());
 
        // Check to see if there is anything in here at the given time
-       if(timepoint_set.find(time)==timepoint_set.end());
+       if(timepoint_set.find(time)==timepoint_set.end())
                return 0;
 
        return 0;