(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

@@ -1607,10 +1607,9 @@ static SaveOrLoadResult SaveFileToDisk(bool threaded)
}
}
static void * CDECL SaveFileToDiskThread(void *arg)
static void SaveFileToDiskThread(void *arg)
{
SaveFileToDisk(true);
return NULL;
}
void WaitTillSaved()