Fixed a harmless signed / unsigned comparation.

git-svn-id: http://yate.null.ro/svn/yate/trunk@5163 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
paulc 2012-06-29 09:23:50 +00:00
parent 1e443066b9
commit 16d4b8b3c0
1 changed files with 1 additions and 1 deletions

View File

@ -2042,7 +2042,7 @@ bool JsCode::jumpAbsolute(long int index, GenObject* context) const
runner->m_index = m_linked.length();
return true;
}
if (index > m_linked.length())
if (index > (long int)m_linked.length())
return false;
runner->m_index = index;
}