make event_init should return struct event_base *

svn:r481
This commit is contained in:
Niels Provos 2007-11-07 01:48:44 +00:00
parent 81802bf98c
commit a527151846
2 changed files with 2 additions and 2 deletions

View File

@ -160,7 +160,7 @@ gettime(struct timeval *tp)
return (gettimeofday(tp, NULL)); return (gettimeofday(tp, NULL));
} }
void * struct event_base *
event_init(void) event_init(void)
{ {
int i; int i;

View File

@ -262,7 +262,7 @@ struct eventop {
The event API needs to be initialized with event_init() before it can be The event API needs to be initialized with event_init() before it can be
used. used.
*/ */
void *event_init(void); struct event_base *event_init(void);
/** /**