(svn r3215) - Fix: warning on VS.NET 2003 complaining about constness reintroduced by revision 3192

This commit is contained in:
Darkvater 2005-11-17 22:56:50 +00:00
parent eba1f68439
commit cac9cfe249
1 changed files with 1 additions and 1 deletions

View File

@ -835,7 +835,7 @@ static void CompanyLeagueWndProc(Window *w, WindowEvent *e)
pl_num = 0;
FOR_ALL_PLAYERS(p) if (p->is_active) plist[pl_num++] = p;
qsort(plist, pl_num, sizeof(*plist), PerfHistComp);
qsort((void*)plist, pl_num, sizeof(*plist), PerfHistComp);
for (i = 0; i != pl_num; i++) {
p = plist[i];