diff options
author | bunnei <ericbunnie@gmail.com> | 2014-06-06 00:35:49 -0400 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-06-13 09:51:13 -0400 |
commit | c95972275e276abe3afcac79d956ea29a0879c8e (patch) | |
tree | f902b895aa25142f94001674baedfdac9794d548 /src/core/hle/kernel/mutex.cpp | |
parent | 5365ca157d5cb81c5cba3922036839f3c58e85ba (diff) |
HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)
Diffstat (limited to 'src/core/hle/kernel/mutex.cpp')
-rw-r--r-- | src/core/hle/kernel/mutex.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/mutex.cpp b/src/core/hle/kernel/mutex.cpp index a76c8de030..1ccf1eb730 100644 --- a/src/core/hle/kernel/mutex.cpp +++ b/src/core/hle/kernel/mutex.cpp @@ -122,7 +122,7 @@ bool ReleaseMutex(Mutex* mutex) { Result ReleaseMutex(Handle handle) { Mutex* mutex = Kernel::g_object_pool.GetFast<Mutex>(handle); - _assert_msg_(KERNEL, (mutex != NULL), "ReleaseMutex tried to release a NULL mutex!"); + _assert_msg_(KERNEL, (mutex != nullptr), "ReleaseMutex tried to release a nullptr mutex!"); if (!ReleaseMutex(mutex)) { return -1; |