diff options
author | Robert Haas <rhaas@postgresql.org> | 2014-09-10 14:40:21 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2014-09-10 14:40:21 -0400 |
commit | 5b26278822c69dd76ef89fd50ecc7cdba9c3f035 (patch) | |
tree | 0a298201fcac152237c98bdaa1412c6c7d5de2e9 /src | |
parent | 45f6240a8fa9d35548eb2ef23dba2c11540aa02a (diff) | |
download | postgresql-5b26278822c69dd76ef89fd50ecc7cdba9c3f035.tar.gz postgresql-5b26278822c69dd76ef89fd50ecc7cdba9c3f035.zip |
Fix thinko in 0709b7ee72e4bc71ad07b7120acd117265ab51d0.
Buildfarm member castoroides is unhappy with this, for entirely
understandable reasons.
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 eff2847f5c8..5f0ad7aa63a 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 */ |