From b29d792253e93744101dd4eb4dc6571e08d1c733 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Branimir=20Karad=C5=BEi=C4=87?= Date: Mon, 23 Nov 2015 19:05:38 -0800 Subject: [PATCH] Fixed clang warning. --- include/bx/thread.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/bx/thread.h b/include/bx/thread.h index 6984181..238a0ab 100644 --- a/include/bx/thread.h +++ b/include/bx/thread.h @@ -63,9 +63,9 @@ namespace bx m_running = true; #if BX_PLATFORM_WINDOWS || BX_PLATFORM_XBOX360 - m_handle = CreateThread(NULL + m_handle = ::CreateThread(NULL , m_stackSize - , threadFunc + , (LPTHREAD_START_ROUTINE)threadFunc , this , 0 , NULL