Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit eae7e00

Browse files
committed
Fix stupid typo in recently-added code :-(
1 parent f00d75b commit eae7e00

File tree

1 file changed

+2
-2
lines changed
  • src/backend/storage/smgr

1 file changed

+2
-2
lines changed

src/backend/storage/smgr/md.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/storage/smgr/md.c,v 1.133 2007/11/15 22:25:16 momjian Exp $
11+
* $PostgreSQL: pgsql/src/backend/storage/smgr/md.c,v 1.134 2007/11/16 00:57:55 tgl Exp $
1212
*
1313
*-------------------------------------------------------------------------
1414
*/
@@ -1185,7 +1185,7 @@ mdpostckpt(void)
11851185
* New entries are appended to the end, so if the entry is new we've
11861186
* reached the end of old entries.
11871187
*/
1188-
if (entry->cycle_ctr == mdsync_cycle_ctr)
1188+
if (entry->cycle_ctr == mdckpt_cycle_ctr)
11891189
break;
11901190

11911191
/* Else assert we haven't missed it */

0 commit comments

Comments
 (0)