diff options
author | Robert Haas <rhaas@postgresql.org> | 2014-10-03 11:25:28 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2014-10-03 11:39:38 -0400 |
commit | 9019264f2e2f87c879855449f57aeeb336ee3c88 (patch) | |
tree | 3c61c3870ac03cd86053620bf95dabb603eafdde /src | |
parent | 7690ddea0c1f6d16584b3e90010a9933ca7134e0 (diff) | |
download | postgresql-9019264f2e2f87c879855449f57aeeb336ee3c88.tar.gz postgresql-9019264f2e2f87c879855449f57aeeb336ee3c88.zip |
Still another typo fix for 0709b7ee72e4bc71ad07b7120acd117265ab51d0.
Buildfarm member anole caught this one.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/storage/s_lock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/storage/s_lock.h b/src/include/storage/s_lock.h index 79bc125c8a1..95775703782 100644 --- a/src/include/storage/s_lock.h +++ b/src/include/storage/s_lock.h @@ -796,7 +796,7 @@ typedef unsigned int slock_t; /* On IA64, it's a win to use a non-locking test before the xchg proper */ #define TAS_SPIN(lock) (*(lock) ? 1 : TAS(lock)) #define S_UNLOCK(lock) \ - do { _Asm_sched_fence(); (*(lock)) = 0); } while (0) + do { _Asm_sched_fence(); (*(lock)) = 0; } while (0) #endif /* HPUX on IA64, non gcc */ |