From e08d89e5d6ecf42db81ac40d86500463c94eb3df Mon Sep 17 00:00:00 2001 From: Rusty Sears Date: Wed, 30 Jan 2013 14:09:14 -0800 Subject: [PATCH] fix erroneous const declaration --- src/stasis/page/slotted.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stasis/page/slotted.c b/src/stasis/page/slotted.c index 99dc6fd..803bc26 100644 --- a/src/stasis/page/slotted.c +++ b/src/stasis/page/slotted.c @@ -17,7 +17,7 @@ are defined at compile time then this method will be more thorough and more expensive. */ -static inline void slottedFsck(const Page const * page) { +static inline void slottedFsck(const Page * page) { const short page_type = page->pageType; assert(page_type == SLOTTED_PAGE || page_type == BOUNDARY_TAG_PAGE ||