mirror of
https://github.com/postgres/postgres.git
synced 2026-06-08 16:26:30 -04:00
Fix speling.
This commit is contained in:
parent
bb206b6dce
commit
868404b859
1 changed files with 2 additions and 2 deletions
|
|
@ -8,7 +8,7 @@
|
|||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/access/heap/heapam.c,v 1.166 2004/05/08 19:09:24 tgl Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/access/heap/heapam.c,v 1.167 2004/05/20 15:07:30 tgl Exp $
|
||||
*
|
||||
*
|
||||
* INTERFACE ROUTINES
|
||||
|
|
@ -483,7 +483,7 @@ conditional_relation_open(Oid relationId, LOCKMODE lockmode, bool nowait)
|
|||
if (nowait)
|
||||
{
|
||||
if (!ConditionalLockRelation(r, lockmode))
|
||||
elog(ERROR, "could not aquire relation lock");
|
||||
elog(ERROR, "could not acquire relation lock");
|
||||
}
|
||||
else
|
||||
LockRelation(r, lockmode);
|
||||
|
|
|
|||
Loading…
Reference in a new issue