Skip to content
Snippets Groups Projects
Commit ccd3d7d8 authored by rswindell's avatar rswindell
Browse files

Fix Windows build error:

sexyz.c(1614) : error C2223: left of '->cbdata' must point to struct/union
parent 05a5dac3
No related branches found
No related tags found
No related merge requests found
......@@ -1611,8 +1611,8 @@ int main(int argc, char **argv)
#if !defined(RINGBUF_EVENT)
outbuf_empty=CreateEvent(NULL,/* ManualReset */TRUE, /*InitialState */TRUE,NULL);
outbuf_empty->cbdata=&outbuf;
#ifdef __unix__
outbuf_empty->cbdata=&outbuf;
outbuf_empty->verify=RingBufIsEmpty;
#endif
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment