API Change: Return void from http_parser_execute().

This commit is contained in:
Ryan
2009-08-21 02:12:15 +02:00
parent 65c61e6eb8
commit dbbc73c16f
3 changed files with 19 additions and 24 deletions

View File

@@ -123,7 +123,7 @@ struct http_parser {
*/
void http_parser_init (http_parser *parser, enum http_parser_type);
size_t http_parser_execute (http_parser *parser, const char *data, size_t len);
void http_parser_execute (http_parser *parser, const char *data, size_t len);
int http_parser_has_error (http_parser *parser);