1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-29 08:01:23 +03:00

Fix compilation of 'threadtest3' for some older versions of MSVC.

FossilOrigin-Name: b5ede6a68891820bd5b6d051b1b641bc1cd49104cad2466db184134d14f58f5b
This commit is contained in:
mistachkin
2021-07-20 00:18:22 +00:00
parent de3246176b
commit f5b70d06ea
5 changed files with 23 additions and 21 deletions

View File

@ -830,7 +830,9 @@ static void join_all_threads_x(
Thread *p;
Thread *pNext;
for(p=pThreads->pThread; p; p=pNext){
#ifndef _WIN32
void *ret;
#endif
int rc;
pNext = p->pNext;