projects
/
postgresql
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7690dde
)
Still another typo fix for 0709b7ee72e4bc71ad07b7120acd117265ab51d0.
author
Robert Haas
<rhaas@postgresql.org>
Fri, 3 Oct 2014 15:25:28 +0000
(11:25 -0400)
committer
Robert Haas
<rhaas@postgresql.org>
Fri, 3 Oct 2014 15:39:38 +0000
(11:39 -0400)
Buildfarm member anole caught this one.
src/include/storage/s_lock.h
patch
|
blob
|
history
diff --git
a/src/include/storage/s_lock.h
b/src/include/storage/s_lock.h
index 79bc125c8a14983557c01a0c53aff53376fff77d..957757037825e8efa2df4462d550684d9fe12194 100644
(file)
--- 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 */