aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2014-09-10 02:43:18 +0200
committerAndres Freund <andres@anarazel.de>2014-09-10 02:44:39 +0200
commitb4c28d1b92c81941e4fc124884e51a7c110316bf (patch)
tree5405b90dcf425ec460cf0ead01e920a4f400f882
parent1b4cc493d2b5216c14ba3ee781cbeff56f96d1b7 (diff)
downloadpostgresql-b4c28d1b92c81941e4fc124884e51a7c110316bf.tar.gz
postgresql-b4c28d1b92c81941e4fc124884e51a7c110316bf.zip
Fix typo in 07c8651dd91d5 causing WIN32_ONLY_COMPILER builds to fail.
-rw-r--r--src/include/storage/s_lock.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/storage/s_lock.h b/src/include/storage/s_lock.h
index c1e36200071..eff2847f5c8 100644
--- a/src/include/storage/s_lock.h
+++ b/src/include/storage/s_lock.h
@@ -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