1
0
Fork 0

(svn r21417) -Fix: ofcourse MSVC x64 has something to complain about

release/1.1
rubidium 2010-12-05 22:43:56 +00:00
parent ea68039718
commit 378e233023
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ DEF_UDP_RECEIVE_COMMAND(Server, PACKET_UDP_CLIENT_DETAIL_INFO)
SetDParam(0, company->index);
GetString(company_name, STR_COMPANY_NAME, company_name + max_cname_length - 1);
free -= MIN_CI_SIZE;
free -= strlen(company_name);
free -= (int)strlen(company_name);
}
if (free >= 0) break;