diff options
-rw-r--r-- | graph_gui.c | 2 |
1 files changed, 1 insertions, 1 deletions
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]; |