mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-28 15:40:23 +08:00
Merge pull request #1509 from jameshilliard/wakeup-conflict
Fix mg_mgr_wakeup conflicting types error
This commit is contained in:
commit
417533e90c
@ -23,8 +23,9 @@ bool mg_send(struct mg_connection *c, const void *buf, size_t len) {
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void mg_mgr_wakeup(struct mg_connection *c, const void *buf, size_t len) {
|
bool mg_mgr_wakeup(struct mg_connection *c, const void *buf, size_t len) {
|
||||||
(void) c, (void) buf, (void) len;
|
(void) c, (void) buf, (void) len;
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct mg_connection *mg_mkpipe(struct mg_mgr *mgr, mg_event_handler_t fn,
|
struct mg_connection *mg_mkpipe(struct mg_mgr *mgr, mg_event_handler_t fn,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user