branches/zip: ha_node_t: Enclose the field buf_block_t* block inside

#ifdef UNIV_DEBUG.  This should have been done in r1014.
This commit is contained in:
marko 2007-09-12 10:44:53 +00:00
parent 746c3316e1
commit 448568332d

View file

@ -158,7 +158,9 @@ ha_print_info(
typedef struct ha_node_struct ha_node_t;
struct ha_node_struct {
ha_node_t* next; /* next chain node or NULL if none */
#ifdef UNIV_DEBUG
buf_block_t* block; /* buffer block containing the data, or NULL */
#endif /* UNIV_DEBUG */
void* data; /* pointer to the data */
ulint fold; /* fold value for the data */
};