gcc: fixed compiler warning

This commit is contained in:
Daniel Marjamäki 2010-12-30 22:13:10 +01:00
parent 3d60d33280
commit 742f5897b9
1 changed files with 1 additions and 1 deletions

View File

@ -330,7 +330,7 @@ void CppCheck::checkFile(const std::string &code, const char FileName[])
{
int pos = 0;
int ovector[30];
if (0 <= pcre_exec(re, NULL, str.c_str(), str.size(), pos, 0, ovector, 30))
if (0 <= pcre_exec(re, NULL, str.c_str(), (int)str.size(), pos, 0, ovector, 30))
{
unsigned int pos1 = (unsigned int)ovector[0];
unsigned int pos2 = (unsigned int)ovector[1];