1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Fix misc. MinGW and Valgrind warnings

This commit is contained in:
kwolekr 2015-11-08 16:19:34 -05:00
parent ad5ac39d8d
commit 6f95bb1ef3
4 changed files with 6 additions and 2 deletions

View file

@ -264,7 +264,8 @@ DWORD WINAPI Thread::threadProc(LPVOID param)
thr->m_running = false;
g_logger.deregisterThread();
return NULL;
// 0 is returned here to avoid an unnecessary ifdef clause
return 0;
}