Consistentize tabs

This commit is contained in:
Nick Mathewson 2010-12-09 11:47:54 -05:00
parent 22f4af6580
commit bb0d2b4e85
5 changed files with 20 additions and 18 deletions

3
http.c
View File

@ -3074,7 +3074,8 @@ evhttp_new_object(void)
http->timeout = -1;
evhttp_set_max_headers_size(http, EV_SIZE_MAX);
evhttp_set_max_body_size(http, EV_SIZE_MAX);
evhttp_set_allowed_methods(http, EVHTTP_REQ_GET |
evhttp_set_allowed_methods(http,
EVHTTP_REQ_GET |
EVHTTP_REQ_POST |
EVHTTP_REQ_HEAD |
EVHTTP_REQ_PUT |

View File

@ -754,7 +754,8 @@ const struct timeval *event_base_init_common_timeout(struct event_base *base,
@param realloc_fn A replacement for realloc
@param free_fn A replacement for free.
**/
void event_set_mem_functions(void *(*malloc_fn)(size_t sz),
void event_set_mem_functions(
void *(*malloc_fn)(size_t sz),
void *(*realloc_fn)(void *ptr, size_t sz),
void (*free_fn)(void *ptr));
#define EVENT_SET_MEM_FUNCTIONS_IMPLEMENTED