(svn r22577) -Fix: MSVC64 compile warning

This commit is contained in:
rubidium 2011-06-13 07:43:48 +00:00
parent 3d4c35c3ca
commit dc74518b96
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;
}