Fix another ssize_t user

svn:r1503
This commit is contained in:
Nick Mathewson 2009-11-05 18:25:46 +00:00
parent a0b302631f
commit d14c3b4570
2 changed files with 3 additions and 4 deletions

View File

@ -55,7 +55,6 @@ EXTRA_DIST = \
whatsnew-2.0.txt \
bufferevent_async.c \
WIN32-Code/event-config.h \
WIN32-Code/config.h \
WIN32-Code/win32.c \
WIN32-Code/tree.h \
WIN32-Prj/event_test/event_test.dsp \

View File

@ -372,10 +372,10 @@ void evhttp_request_own(struct evhttp_request *req);
int evhttp_request_is_owned(struct evhttp_request *req);
void evhttp_connection_set_max_headers_size(struct evhttp_connection *evcon,
ssize_t new_max_headers_size);
ev_ssize_t new_max_headers_size);
void evhttp_connection_set_max_body_size(struct evhttp_connection* evcon,
ssize_t new_max_body_size);
ev_ssize_t new_max_body_size);
/** Frees an http connection */
void evhttp_connection_free(struct evhttp_connection *evcon);