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

This was forgotten to be changed in commit 9c727360bcc.
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;
}