From 8f7676b1bfec1a8a40a04fc44b6a322ca62ffe6d Mon Sep 17 00:00:00 2001 From: bkaradzic Date: Thu, 18 Apr 2013 21:15:06 -0700 Subject: [PATCH] Use 0 instead of EXIT_SUCCESS. --- include/bx/thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bx/thread.h b/include/bx/thread.h index 3aa9542..2432f15 100644 --- a/include/bx/thread.h +++ b/include/bx/thread.h @@ -30,7 +30,7 @@ namespace bx , m_fn(NULL) , m_userData(NULL) , m_stackSize(0) - , m_exitCode(EXIT_SUCCESS) + , m_exitCode(0 /*EXIT_SUCCESS*/) , m_running(false) { }