From 57621d1c4ed6fdc934c566e81b0edf5c40b2116b Mon Sep 17 00:00:00 2001 From: JohnHolmesII Date: Mon, 28 Dec 2020 17:08:37 -0800 Subject: [PATCH] Types: Use nullptr over 0 --- Utilities/Thread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utilities/Thread.cpp b/Utilities/Thread.cpp index 8c536a06a6..8a09b401e8 100644 --- a/Utilities/Thread.cpp +++ b/Utilities/Thread.cpp @@ -2425,7 +2425,7 @@ u64 thread_base::get_cycles() #ifdef _WIN32 _endthreadex(0); #else - pthread_exit(0); + pthread_exit(nullptr); #endif }