Skip to content
Snippets Groups Projects
Commit 4ff04683 authored by Alvaro Herrera's avatar Alvaro Herrera
Browse files

Fix silly typo in previous commit.

parent d698bf83
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $PostgreSQL: pgsql/src/backend/access/transam/clog.c,v 1.49 2008/11/03 19:24:03 alvherre Exp $ * $PostgreSQL: pgsql/src/backend/access/transam/clog.c,v 1.50 2008/11/03 19:26:07 alvherre Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -324,7 +324,7 @@ TransactionIdSetStatusBit(TransactionId xid, XidStatus status, XLogRecPtr lsn, i ...@@ -324,7 +324,7 @@ TransactionIdSetStatusBit(TransactionId xid, XidStatus status, XLogRecPtr lsn, i
char curval; char curval;
byteptr = ClogCtl->shared->page_buffer[slotno] + byteno; byteptr = ClogCtl->shared->page_buffer[slotno] + byteno;
curval = (*byteptr >> shift) & CLOG_XACT_BITMASK; curval = (*byteptr >> bshift) & CLOG_XACT_BITMASK;
/* /*
* When replaying transactions during recovery we still need to perform * When replaying transactions during recovery we still need to perform
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment