(svn r22602) [1.1] -Fix: MSVC compile warning

This commit is contained in:
rubidium 2011-06-19 12:12:10 +00:00
parent 725d00630f
commit b5bad6aa19
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ static size_t LookupManyOfMany(const char *many, const char *str)
r = LookupOneOfMany(many, str, s - str);
if (r == (size_t)-1) return r;
SetBit(res, r); // value found, set it
SetBit(res, (uint8)r); // value found, set it
if (*s == 0) break;
str = s + 1;
}