fixed windows compile

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2241 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2010-02-08 17:38:57 +00:00
parent 1c51a0faab
commit 96caa40895

View File

@ -257,7 +257,7 @@ bool ftServer::checkHash(const std::string& hash,std::string& error_string)
return false ;
}
for(uint i=0;i<hash.length();++i)
for(uint32_t i=0;i<hash.length();++i)
if(!((hash[i] > 47 && hash[i] < 58) || (hash[i] > 96 && hash[i] < 103)))
{
std::ostringstream is;