1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-07-22 17:18:39 +00:00

Fix warnings reported by clang

This commit is contained in:
sfan5 2014-07-06 13:07:23 +02:00
parent 5f9962e1cc
commit 37b7f094e3
5 changed files with 8 additions and 16 deletions

View file

@ -54,10 +54,10 @@ private:
HANDLE m_hSemaphore;
#elif __MACH__
semaphore_t m_semaphore;
int semcount;
#else
sem_t m_semaphore;
#endif
int semcount;
};