1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-12 16:15:20 +02:00

Fix uninitalised variable in event.cpp (#5764)

This commit is contained in:
Zeno-
2017-05-15 20:10:29 +10:00
committed by GitHub
parent 018217f6b2
commit 1bf9b25fb4

View File

@@ -35,6 +35,8 @@ Event::Event()
pthread_mutex_init(&mutex, NULL); pthread_mutex_init(&mutex, NULL);
notified = false; notified = false;
# endif # endif
#elif USE_CPP11_MUTEX
notified = false;
#endif #endif
} }