summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Src/Thread.cpp
diff options
context:
space:
mode:
authorhrydgard <hrydgard@gmail.com>2008-12-13 16:58:06 +0000
committerhrydgard <hrydgard@gmail.com>2008-12-13 16:58:06 +0000
commit522752c77d101e7c8dd7c661e1e5fc601280e9e1 (patch)
treed8747759465d5f4e37d22510838c215bd2efa828 /Source/Core/Common/Src/Thread.cpp
parent4355c373970ccc3f690699f0d40448972f81e8bc (diff)
small speedup of logmanager, minor logging improvements, misc code standard improvements, replace a crash with an error message in ppcanalyst
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1521 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core/Common/Src/Thread.cpp')
-rw-r--r--Source/Core/Common/Src/Thread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Src/Thread.cpp b/Source/Core/Common/Src/Thread.cpp
index 5af43cca41..853918cf06 100644
--- a/Source/Core/Common/Src/Thread.cpp
+++ b/Source/Core/Common/Src/Thread.cpp
@@ -58,7 +58,7 @@ void CriticalSection::Enter()
bool CriticalSection::TryEnter()
{
- return(TryEnterCriticalSection(&section) ? true : false);
+ return TryEnterCriticalSection(&section) ? true : false;
}