Skip to content

Commit 3eecc6f

Browse files
committedJan 28, 2017
Fix AIX threading build
1 parent c93f7f5 commit 3eecc6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/threading/thread.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ DWORD WINAPI Thread::threadProc(LPVOID param)
252252
Thread *thr = (Thread *)param;
253253

254254
#ifdef _AIX
255-
m_kernel_thread_id = thread_self();
255+
thr->m_kernel_thread_id = thread_self();
256256
#endif
257257

258258
thr->setName(thr->m_name);

0 commit comments

Comments
 (0)
Please sign in to comment.