Fixed compile issue in dcb.h

This commit is contained in:
Mark Riddoch
2013-08-29 13:17:19 +02:00
parent 94a8ad68d3
commit 03725cabe3

View File

@ -162,10 +162,8 @@ typedef struct dcb {
simple_mutex_t dcb_read_lock; simple_mutex_t dcb_read_lock;
simple_mutex_t dcb_write_lock; simple_mutex_t dcb_write_lock;
int fd; /**< The descriptor */ int fd; /**< The descriptor */
#if defined(SS_DEBUG)
bool dcb_read_active; bool dcb_read_active;
bool dcb_write_active; bool dcb_write_active;
#endif
dcb_state_t state; /**< Current descriptor state */ dcb_state_t state; /**< Current descriptor state */
char *remote; /**< Address of remote end */ char *remote; /**< Address of remote end */
void *protocol; /**< The protocol specific state */ void *protocol; /**< The protocol specific state */