Commit 5b262788 authored by Robert Haas's avatar Robert Haas

Fix thinko in 0709b7ee.

Buildfarm member castoroides is unhappy with this, for entirely
understandable reasons.
parent 45f6240a
...@@ -932,7 +932,7 @@ extern int tas_sema(volatile slock_t *lock); ...@@ -932,7 +932,7 @@ extern int tas_sema(volatile slock_t *lock);
* which the PostgreSQL project does not have access. * which the PostgreSQL project does not have access.
*/ */
#define USE_DEFAULT_S_UNLOCK #define USE_DEFAULT_S_UNLOCK
extern void s_unlock(volatile s_lock *lock); extern void s_unlock(volatile slock_t *lock);
#define S_UNLOCK(lock) s_unlock(lock) #define S_UNLOCK(lock) s_unlock(lock)
#endif /* S_UNLOCK */ #endif /* S_UNLOCK */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment