mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
libevent1: fix layout of duplicated RB_ENTRY() definition
3a509754deremoved the color field from our definition, but libevent1 has a copy of it off to the side to prevent event.h consumers from *needing* to pull in sys/queue.h and sys/tree.h. Update the event.h definition so that we don't accidentally end up with two different views of struct event. This appears to have no functional effect on anything in tree, but this came up in a local patch to port if_switch(4) and related components from OpenBSD. (cherry picked from commit64c01719e4)
This commit is contained in:
parent
223d6caabd
commit
e0ad785a5d
1 changed files with 0 additions and 1 deletions
|
|
@ -73,7 +73,6 @@ struct { \
|
|||
struct type *rbe_left; /* left element */ \
|
||||
struct type *rbe_right; /* right element */ \
|
||||
struct type *rbe_parent; /* parent element */ \
|
||||
int rbe_color; /* node color */ \
|
||||
}
|
||||
#endif /* !RB_ENTRY */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue