From cac9cfe24970690b9e46f571aa17e1970ba2dbb5 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Thu, 17 Nov 2005 22:56:50 +0000 Subject: (svn r3215) - Fix: warning on VS.NET 2003 complaining about constness reintroduced by revision 3192 --- graph_gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph_gui.c b/graph_gui.c index 7d4a32596..58bfe68a7 100644 --- a/graph_gui.c +++ b/graph_gui.c @@ -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]; -- cgit v1.2.3-70-g09d2