thread: code style

(cherry picked from commit 461a38ff1a)
This commit is contained in:
pionere
2022-11-29 17:30:03 +01:00
committed by Sam Lantinga
parent 8cda5102fc
commit 0b7a9a8e9f
12 changed files with 43 additions and 42 deletions

View File

@@ -54,7 +54,7 @@ extern "C"
void
SDL_DestroyMutex(SDL_mutex * mutex)
{
if (mutex) {
if (mutex != NULL) {
delete mutex;
}
}