Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8291f7 commit 9453940Copy full SHA for 9453940
src/include/storage/bufpage.h
@@ -6,7 +6,7 @@
6
*
7
* Copyright (c) 1994, Regents of the University of California
8
9
- * $Id: bufpage.h,v 1.14 1998/01/13 04:05:11 scrappy Exp $
+ * $Id: bufpage.h,v 1.15 1998/01/13 14:56:15 vadim Exp $
10
11
*-------------------------------------------------------------------------
12
*/
@@ -272,9 +272,7 @@ typedef enum
272
273
/* XXX dig out of buffer descriptor */
274
#define BufferGetPageSize(buffer) \
275
- (AssertMacro(BufferIsValid(buffer)) ? \
276
- AssertMacro(PageSizeIsValid(pageSize)) ? \
277
- ((Size)BLCKSZ) : false : false)
+ (AssertMacro(BufferIsValid(buffer)) ? (Size)BLCKSZ : false)
278
279
/*
280
* BufferGetPage --
0 commit comments