Make the test and vis set pointers const.

This commit is contained in:
Bill Currie 2013-03-07 14:28:15 +09:00
parent 281c5f185d
commit 4ccb4a4667
1 changed files with 2 additions and 1 deletions

View File

@ -197,7 +197,8 @@ static void
RecursiveClusterFlow (int clusternum, threaddata_t *thread, pstack_t *prevstack)
{
int i;
set_t *test, *might, *vis;
set_t *might;
const set_t *test, *vis;
qboolean more;
cluster_t *cluster;
pstack_t stack;