Skip to content

Commit

Permalink
Fix typo in C comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
kgrittn committed Apr 9, 2016
1 parent 56dffb5 commit 381200b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/include/storage/bufpage.h
Original file line number Diff line number Diff line change
Expand Up @@ -301,10 +301,10 @@ typedef PageHeaderData *PageHeader;
* Using assertions, validate that the page special pointer is OK.
*
* This is intended to catch use of the pointer before page initialization.
* It is implemented as a function do to the limitations of the MSVC compiler,
* which choked on doing all these tests within another macro. We return true
* so that MacroAssert() can be used while still getting the specifics from
* the macro failure within this function.
* It is implemented as a function due to the limitations of the MSVC
* compiler, which choked on doing all these tests within another macro. We
* return true so that MacroAssert() can be used while still getting the
* specifics from the macro failure within this function.
*/
static inline bool
PageValidateSpecialPointer(Page page)
Expand Down

0 comments on commit 381200b

Please sign in to comment.