thread: code style

This commit is contained in:
pionere
2022-11-29 17:30:03 +01:00
committed by Sam Lantinga
parent 38c281fbc0
commit 461a38ff1a
12 changed files with 35 additions and 38 deletions

View File

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