Fix typo in 07c8651dd9 causing WIN32_ONLY_COMPILER builds to fail.

This commit is contained in:
Andres Freund 2014-09-10 02:43:18 +02:00
parent 1b4cc493d2
commit b4c28d1b92
1 changed files with 1 additions and 1 deletions

View File

@ -863,7 +863,7 @@ spin_delay(void)
#pragma intrinsic(_ReadWriteBarrier)
#define S_UNLOCK(lock) \
do { _ReadWriteBarrier(); (*(lock)) = 0); } while (0)
do { _ReadWriteBarrier(); (*(lock)) = 0; } while (0)
#endif