8000 Fix typo/bug, found by Clang compiler · postgrespro/postgres_cluster@c86efdd · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c86efdd

Browse files
committed
Fix typo/bug, found by Clang compiler
1 parent cc3c4a2 commit c86efdd

File tree

1 file changed

+2
-2
lines changed
  • src/backend/access/transam

1 file changed

+2
-2
lines changed

src/backend/access/transam/xlog.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.422 2010/06/10 08:13:50 itagaki Exp $
10+
* $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.423 2010/06/12 09:14:52 petere Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -7756,7 +7756,7 @@ XLogReportParameters(void)
77567756
if (wal_level != ControlFile->wal_level ||
77577757
MaxConnections != ControlFile->MaxConnections ||
77587758
max_prepared_xacts != ControlFile->max_prepared_xacts ||
7759-
max_locks_per_xact != max_locks_per_xact)
7759+
max_locks_per_xact != ControlFile->max_locks_per_xact)
77607760
{
77617761
/*
77627762
* The change in number of backend slots doesn't need to be

0 commit comments

Comments
 (0)
0