Commit a877fffc authored by marko's avatar marko

branches/zip: buf_block_get_frame(): Add missing parenthesis.

parent 0028e8d1
...@@ -796,7 +796,7 @@ buf_block_get_frame( ...@@ -796,7 +796,7 @@ buf_block_get_frame(
const buf_block_t* block) /* in: pointer to the control block */ const buf_block_t* block) /* in: pointer to the control block */
__attribute__((pure)); __attribute__((pure));
#else /* UNIV_DEBUG */ #else /* UNIV_DEBUG */
# define buf_block_get_frame(block) block->frame # define buf_block_get_frame(block) (block)->frame
#endif /* UNIV_DEBUG */ #endif /* UNIV_DEBUG */
/************************************************************************* /*************************************************************************
Gets the space id of a block. */ Gets the space id of a block. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment