BLI: Fix mistake in SpinLock TBB migration

Copy-paste mistake.
This commit is contained in:
Sergey Sharybin 2020-07-07 16:17:36 +02:00
parent 20558848d3
commit d1dcd2b464
1 changed files with 1 additions and 1 deletions

View File

@ -500,7 +500,7 @@ void BLI_spin_end(SpinLock *spin)
#elif defined(__APPLE__)
BLI_mutex_end(spin);
#elif defined(_MSC_VER)
BLI_mutex_unlock(spin);
/* Nothing to do, spin is a simple integer type. */
#else
pthread_spin_destroy(spin);
#endif