aboutsummaryrefslogtreecommitdiff
path: root/src/backend/storage/lmgr/multi.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-07-15 20:32:30 +0000
committerBruce Momjian <bruce@momjian.us>1999-07-15 20:32:30 +0000
commit40a89e08b2d7bb592d940e56f696df4a6459e7a3 (patch)
tree161f97bb8733ed8eca262b9478edebc07caa1e33 /src/backend/storage/lmgr/multi.c
parentfb38a5d8cfd05ae7890f6b319aa5983ccf12f21b (diff)
downloadpostgresql-40a89e08b2d7bb592d940e56f696df4a6459e7a3.tar.gz
postgresql-40a89e08b2d7bb592d940e56f696df4a6459e7a3.zip
Cleanups.
Diffstat (limited to 'src/backend/storage/lmgr/multi.c')
-rw-r--r--src/backend/storage/lmgr/multi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/storage/lmgr/multi.c b/src/backend/storage/lmgr/multi.c
index e60ba613ee8..12c7d70e82b 100644
--- a/src/backend/storage/lmgr/multi.c
+++ b/src/backend/storage/lmgr/multi.c
@@ -12,7 +12,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/Attic/multi.c,v 1.29 1999/05/25 16:11:22 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/Attic/multi.c,v 1.30 1999/07/15 20:32:27 momjian Exp $
*
* NOTES:
* (1) The lock.c module assumes that the caller here is doing
@@ -41,7 +41,7 @@ static bool MultiRelease(LOCKMETHOD lockmethod, LOCKTAG *tag,
* WRITE conflict between the tuple's intent lock and the relation's
* write lock.
*/
-static MASK MultiConflicts[] = {
+static LOCKMASK MultiConflicts[] = {
(int) NULL,
/* All reads and writes at any level conflict with a write lock */
(1 << WRITE_LOCK) | (1 << WRITE_INTENT) | (1 << READ_LOCK) | (1 << READ_INTENT),