diff options
Diffstat (limited to 'src/utils/sdlhelper.cpp')
-rw-r--r-- | src/utils/sdlhelper.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/sdlhelper.cpp b/src/utils/sdlhelper.cpp index a3dfb3842..474840d2a 100644 --- a/src/utils/sdlhelper.cpp +++ b/src/utils/sdlhelper.cpp @@ -193,7 +193,7 @@ void SDL::setLogLevel(const int level A_UNUSED) void SDL::WaitThread(SDL_Thread *const thread) { - if (thread != nullptr && SDL_GetThreadID(thread) != 0u) + if (thread != nullptr && SDL_GetThreadID(thread) != 0U) SDL_WaitThread(thread, nullptr); } |