aboutsummaryrefslogtreecommitdiff
path: root/src/backend/storage/lmgr/multi.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/storage/lmgr/multi.c')
-rw-r--r--src/backend/storage/lmgr/multi.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/backend/storage/lmgr/multi.c b/src/backend/storage/lmgr/multi.c
index 2196444299f..db9917f86aa 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.11 1998/01/23 19:53:40 scrappy Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/Attic/multi.c,v 1.12 1998/06/15 19:29:21 momjian Exp $
*
* NOTES:
* (1) The lock.c module assumes that the caller here is doing
@@ -99,9 +99,7 @@ InitMultiLevelLockm()
tableId = LockTabInit("LockTable", MultiConflicts, MultiPrios, 5);
MultiTableId = tableId;
if (!(MultiTableId))
- {
elog(ERROR, "InitMultiLockm: couldnt initialize lock table");
- }
/* -----------------------
* No short term lock table for now. -Jeff 15 July 1991
*
@@ -434,9 +432,7 @@ MultiRelease(LockTableId tableId,
}
status = LockRelease(tableId, tmpTag, locks[i]);
if (!status)
- {
elog(ERROR, "MultiRelease: couldn't release after error");
- }
}
}
/* shouldn't reach here */