From 5b26278822c69dd76ef89fd50ecc7cdba9c3f035 Mon Sep 17 00:00:00 2001 From: Robert Haas Date: Wed, 10 Sep 2014 14:40:21 -0400 Subject: [PATCH] Fix thinko in 0709b7ee72e4bc71ad07b7120acd117265ab51d0. Buildfarm member castoroides is unhappy with this, for entirely understandable reasons. --- src/include/storage/s_lock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/storage/s_lock.h b/src/include/storage/s_lock.h index eff2847f5c..5f0ad7aa63 100644 --- a/src/include/storage/s_lock.h +++ b/src/include/storage/s_lock.h @@ -932,7 +932,7 @@ extern int tas_sema(volatile slock_t *lock); * which the PostgreSQL project does not have access. */ #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) #endif /* S_UNLOCK */