projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c9238ad
)
Replace AssertMacro() with Assert() when not in macro
author
Peter Eisentraut
<peter@eisentraut.org>
Tue, 11 Feb 2025 10:12:05 +0000
(11:12 +0100)
committer
Peter Eisentraut
<peter@eisentraut.org>
Tue, 11 Feb 2025 10:12:05 +0000
(11:12 +0100)
This was forgotten to be changed in commit
9c727360bcc
.
src/include/storage/bufmgr.h
patch
|
blob
|
blame
|
history
diff --git
a/src/include/storage/bufmgr.h
b/src/include/storage/bufmgr.h
index 46b4e0d90f37b3636824481034011844edadd4be..7c1e4316dded7b3f2d95efd9e0940fff647550f7 100644
(file)
--- a/
src/include/storage/bufmgr.h
+++ b/
src/include/storage/bufmgr.h
@@
-384,7
+384,7
@@
BufferGetBlock(Buffer buffer)
static inline Size
BufferGetPageSize(Buffer buffer)
{
- Assert
Macro
(BufferIsValid(buffer));
+ Assert(BufferIsValid(buffer));
return (Size) BLCKSZ;
}