remove trailing comma from enum

makes being included from something with -std=c89 happy
This commit is contained in:
Jean-Philippe Ouellet 2014-10-16 22:56:49 -04:00
parent c750c704c1
commit b361b8a656

View File

@ -599,7 +599,7 @@ enum bufferevent_trigger_options {
BEV_TRIG_IGNORE_WATERMARKS = (1<<16), BEV_TRIG_IGNORE_WATERMARKS = (1<<16),
/** defer even if the callbacks are not */ /** defer even if the callbacks are not */
BEV_TRIG_DEFER_CALLBACKS = BEV_OPT_DEFER_CALLBACKS, BEV_TRIG_DEFER_CALLBACKS = BEV_OPT_DEFER_CALLBACKS
/* (Note: for internal reasons, these need to be disjoint from /* (Note: for internal reasons, these need to be disjoint from
* bufferevent_options, except when they mean the same thing. */ * bufferevent_options, except when they mean the same thing. */