Skip to content
Snippets Groups Projects
Commit 96a73fcd authored by Kevin Grittner's avatar Kevin Grittner
Browse files

Fix compiler warning for non-assert builds.

Reported by Peter Geoghegan
David Rowley
parent 095d4012
No related branches found
No related tags found
No related merge requests found
...@@ -110,7 +110,7 @@ brinRevmapTerminate(BrinRevmap *revmap) ...@@ -110,7 +110,7 @@ brinRevmapTerminate(BrinRevmap *revmap)
void void
brinRevmapExtend(BrinRevmap *revmap, BlockNumber heapBlk) brinRevmapExtend(BrinRevmap *revmap, BlockNumber heapBlk)
{ {
BlockNumber mapBlk; BlockNumber mapBlk PG_USED_FOR_ASSERTS_ONLY;
mapBlk = revmap_extend_and_get_blkno(revmap, heapBlk); mapBlk = revmap_extend_and_get_blkno(revmap, heapBlk);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment