From 96d7f87cc99ee04791b9fa097a027a17bb82226b Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 8 Jun 2008 10:51:36 +0000 Subject: (svn r13411) -Codechange: remove the return value from the thread procs because it is never used. --- src/genworld.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/genworld.cpp') diff --git a/src/genworld.cpp b/src/genworld.cpp index a870108c5..88e4633e6 100644 --- a/src/genworld.cpp +++ b/src/genworld.cpp @@ -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; } /** -- cgit v1.2.3-54-g00ecf