diff options
author | Michael Paquier <michael@paquier.xyz> | 2020-10-06 15:29:34 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2020-10-06 15:29:34 +0900 |
commit | 0a3c864c32751fd29d021929cf70af421fd27370 (patch) | |
tree | fd71cf8e18c7008a0afccca128e33b9710218df0 /src/backend/access/transam/xlog.c | |
parent | 1df2b50dbebb72a75708c3cfbc21bcaa71993147 (diff) | |
download | postgresql-0a3c864c32751fd29d021929cf70af421fd27370.tar.gz postgresql-0a3c864c32751fd29d021929cf70af421fd27370.zip |
Fix compilation warning in xlog.c
Oversight in 9d0bd95.
Reported-by: Andres Freund
Discussion: https://postgr.es/m/20201006023802.qqfi6m5bw5y77zql@alap3.anarazel.de
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index 8f11b1b9de1..52a67b11701 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -10250,8 +10250,6 @@ xlog_redo(XLogReaderState *record) static void xlog_outrec(StringInfo buf, XLogReaderState *record) { - int block_id; - appendStringInfo(buf, "prev %X/%X; xid %u", (uint32) (XLogRecGetPrev(record) >> 32), (uint32) XLogRecGetPrev(record), |