mirror of
https://github.com/minetest/minetest.git
synced 2024-11-24 00:23:46 +01:00
Fix uninitalised variable in event.cpp (#5764)
This commit is contained in:
parent
018217f6b2
commit
1bf9b25fb4
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user