X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;ds=sidebyside;f=src%2Fevent.h;h=7d52a174fa874f8b460a5645e6cb234495685393;hb=5216839fa30dfbf5204b274b4e8becbb34e6ca21;hp=1d88383d25b8ce72099890ba77ef612c1c1b0257;hpb=fb7b6e7a0c966a88a682f656ca1caeb9a0583c5b;p=meshlink diff --git a/src/event.h b/src/event.h index 1d88383d..7d52a174 100644 --- a/src/event.h +++ b/src/event.h @@ -34,21 +34,21 @@ typedef struct io_t { int flags; io_cb_t cb; void *data; - splay_node_t node; + struct splay_node_t node; } io_t; typedef struct timeout_t { struct timeval tv; timeout_cb_t cb; void *data; - splay_node_t node; + struct splay_node_t node; } timeout_t; typedef struct signal_t { int signum; signal_cb_t cb; void *data; - splay_node_t node; + struct splay_node_t node; } signal_t; extern struct timeval now;