Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 6998db5

Browse files
committed
Replace AssertMacro() with Assert() when not in macro
This was forgotten to be changed in commit 9c72736.
1 parent c9238ad commit 6998db5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/include/storage/bufmgr.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ BufferGetBlock(Buffer buffer)
384384
static inline Size
385385
BufferGetPageSize(Buffer buffer)
386386
{
387-
AssertMacro(BufferIsValid(buffer));
387+
Assert(BufferIsValid(buffer));
388388
return (Size) BLCKSZ;
389389
}
390390

0 commit comments

Comments
 (0)