From fa1da94cc81cd5f964367730a81ba5b05751672a Mon Sep 17 00:00:00 2001 From: Pavel Seleznev Date: Sun, 15 Sep 2024 12:35:50 +0300 Subject: [PATCH] fixed type in debug message --- ptrack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ptrack.c b/ptrack.c index e2f3627..775c20c 100644 --- a/ptrack.c +++ b/ptrack.c @@ -656,7 +656,7 @@ ptrack_get_pagemapset(PG_FUNCTION_ARGS) #if USE_ASSERT_CHECKING if (update_lsn2 != InvalidXLogRecPtr) elog(DEBUG3, "ptrack: update_lsn2 %X/%X of blckno %u of file %s", - (uint32) (update_lsn1 >> 32), (uint32) update_lsn2, + (uint32) (update_lsn2 >> 32), (uint32) update_lsn2, ctx->bid.blocknum, ctx->relpath); #endif