1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Fix copy-pasto in description of pg_serial, and silence compiler warning

about uninitialized field you get on some compilers.
This commit is contained in:
Heikki Linnakangas
2011-02-08 09:03:08 +02:00
parent 32896c40ca
commit 7202ad7b8d
2 changed files with 2 additions and 2 deletions

View File

@ -3671,7 +3671,7 @@ CheckForSerializableConflictOut(const bool visible, const Relation relation,
static void
CheckTargetForConflictsIn(PREDICATELOCKTARGETTAG *targettag)
{
PREDICATELOCKTARGETTAG nexttargettag;
PREDICATELOCKTARGETTAG nexttargettag = { 0 };
PREDICATELOCKTARGETTAG thistargettag;
for (;;)