This should probably be a size_t, perhaps this fixes the win64 mediafilter bug.

This commit is contained in:
Inusaito Sayori
2014-08-07 21:56:25 -04:00
parent acb093c277
commit 4754c1322d

View File

@@ -418,7 +418,7 @@ std::string extractDomain(const std::string& in_url)
if (pos != std::string::npos)
{
S32 count = url.size()-pos+1;
size_t count = url.size()-pos+1;
url = url.substr(pos+1, count);
}