Fixed two warnings with -pedantic

This commit is contained in:
Pierre Pronchery 2009-07-12 22:43:44 +00:00
parent 5f2517a809
commit d6d50e7470

View File

@ -41,7 +41,7 @@ typedef struct _EventTimeout
EventTimeoutFunc func;
void * data;
} EventTimeout;
ARRAY(EventTimeout *, eventtimeout);
ARRAY(EventTimeout *, eventtimeout)
typedef struct _EventIO
{
@ -49,7 +49,7 @@ typedef struct _EventIO
EventIOFunc func;
void * data;
} EventIO;
ARRAY(EventIO *, eventio);
ARRAY(EventIO *, eventio)
struct _Event
{