1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Replace AssertMacro() with Assert() when not in macro

This was forgotten to be changed in commit 9c727360bc.
This commit is contained in:
Peter Eisentraut
2025-02-11 11:12:05 +01:00
parent c9238ad853
commit 6998db59c2

View File

@ -384,7 +384,7 @@ BufferGetBlock(Buffer buffer)
static inline Size
BufferGetPageSize(Buffer buffer)
{
AssertMacro(BufferIsValid(buffer));
Assert(BufferIsValid(buffer));
return (Size) BLCKSZ;
}