mirror of
https://github.com/luanti-org/luanti.git
synced 2025-10-13 16:45:20 +02:00
NetBSD build fix proposal. (#10308)
Fixing thread naming call and let the class setting RANDOM_MIN/RANDOM_MAX.
This commit is contained in:
@@ -219,7 +219,7 @@ void Thread::setName(const std::string &name)
|
||||
|
||||
#elif defined(__NetBSD__)
|
||||
|
||||
pthread_setname_np(pthread_self(), name.c_str());
|
||||
pthread_setname_np(pthread_self(), "%s", const_cast<char*>(name.c_str()));
|
||||
|
||||
#elif defined(__APPLE__)
|
||||
|
||||
|
Reference in New Issue
Block a user