Fix typo from MacOS signal fix improvement in PR #8928.

pull/8934/head
David Garske 2025-06-27 07:43:55 -07:00
parent edacf0434c
commit 20a2ec0fc1
1 changed files with 1 additions and 1 deletions

View File

@ -3974,7 +3974,7 @@ char* mystrnstr(const char* s1, const char* s2, unsigned int n)
*/
if (dispatch_semaphore_signal(s->sem) < 0) {
dispatch_release(s->sem);
return return MEMORY_E;
return MEMORY_E;
}
#elif defined(__OS2__)
DosCreateMutexSem( NULL, &cond->mutex, 0, FALSE );