(svn r13411) -Codechange: remove the return value from the thread procs because it is never used.

This commit is contained in:
rubidium
2008-06-08 10:51:36 +00:00
parent b1dc705492
commit 96d7f87cc9
7 changed files with 20 additions and 39 deletions

View File

@@ -85,7 +85,7 @@ bool IsGenerateWorldThreaded()
/**
* The internal, real, generate function.
*/
static void * CDECL _GenerateWorld(void *arg)
static void _GenerateWorld(void *arg)
{
try {
_generating_world = true;
@@ -170,7 +170,6 @@ static void * CDECL _GenerateWorld(void *arg)
_generating_world = false;
throw;
}
return NULL;
}
/**