mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
Replace AssertMacro() with Assert() when not in macro
This was forgotten to be changed in commit 9c727360bc
.
This commit is contained in:
@ -384,7 +384,7 @@ BufferGetBlock(Buffer buffer)
|
|||||||
static inline Size
|
static inline Size
|
||||||
BufferGetPageSize(Buffer buffer)
|
BufferGetPageSize(Buffer buffer)
|
||||||
{
|
{
|
||||||
AssertMacro(BufferIsValid(buffer));
|
Assert(BufferIsValid(buffer));
|
||||||
return (Size) BLCKSZ;
|
return (Size) BLCKSZ;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user