Commit 7ad9b358 authored by Sergey Vojtovich's avatar Sergey Vojtovich

OS X warnings fixes

parent c8e50269
......@@ -50,7 +50,7 @@ class MutexDebug {
m_mutex(),
m_filename(),
m_line(),
m_thread_id(os_thread_id_t(ULINT_UNDEFINED))
m_thread_id(ULINT_UNDEFINED)
{
/* No op */
}
......@@ -76,7 +76,8 @@ class MutexDebug {
{
m_mutex = mutex;
my_atomic_storelint(&m_thread_id, os_thread_get_curr_id());
my_atomic_storelint(&m_thread_id,
ulint(os_thread_get_curr_id()));
m_filename = filename;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment