Parcourir la source

Use 0 instead of EXIT_SUCCESS.

bkaradzic il y a 12 ans
Parent
commit
8f7676b1bf
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      include/bx/thread.h

+ 1 - 1
include/bx/thread.h

@@ -30,7 +30,7 @@ namespace bx
 			, m_fn(NULL)
 			, m_fn(NULL)
 			, m_userData(NULL)
 			, m_userData(NULL)
 			, m_stackSize(0)
 			, m_stackSize(0)
-			, m_exitCode(EXIT_SUCCESS)
+			, m_exitCode(0 /*EXIT_SUCCESS*/)
 			, m_running(false)
 			, m_running(false)
 		{
 		{
 		}
 		}