mirror of
https://github.com/cesanta/mongoose.git
synced 2025-06-08 01:42:52 +08:00
Specify void arguments explicitly
PUBLISHED_FROM=345ac55417a9b012e89244d36bfb9ebf8e908637
This commit is contained in:
parent
a4c668e37a
commit
b667bd709d
@ -154,7 +154,7 @@ MG_INTERNAL void mg_ws_handshake(struct mg_connection *nc,
|
||||
#endif
|
||||
#endif /* MG_ENABLE_HTTP */
|
||||
|
||||
MG_INTERNAL int mg_get_errno();
|
||||
MG_INTERNAL int mg_get_errno(void);
|
||||
|
||||
#endif /* CS_MONGOOSE_SRC_INTERNAL_H_ */
|
||||
#ifdef MG_MODULE_LINES
|
||||
@ -8219,7 +8219,7 @@ int mg_match_prefix(const char *pattern, int pattern_len, const char *str) {
|
||||
return mg_match_prefix_n(pstr, mg_mk_str(str));
|
||||
}
|
||||
|
||||
MG_INTERNAL int mg_get_errno() {
|
||||
MG_INTERNAL int mg_get_errno(void) {
|
||||
#ifndef WINCE
|
||||
return errno;
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user