Revert the incorrect change to this file made in r1326.
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Mon, 14 Jan 2008 22:00:02 +0000 (22:00 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Mon, 14 Jan 2008 22:00:02 +0000 (22:00 +0000)
git-svn-id: http://svn.voria.com/code@1365 1f10aa63-cdf2-0310-b900-c93c546f37ac

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

index a8f1798..62227fc 100644 (file)
@@ -694,8 +694,7 @@ ValueNode_BLine::operator()(Time t)const
 String
 ValueNode_BLine::link_local_name(int i)const
 {
-       assert(i>=0 && i<list.size());
-
+       assert(i>=0 && (unsigned)i<list.size());
        return etl::strprintf(_("Vertex %03d"),i+1);
 }