Skip to content

Commit

Permalink
Fix another ssize_t user
Browse files Browse the repository at this point in the history
svn:r1503
  • Loading branch information
nmathewson committed Nov 5, 2009
1 parent a0b3026 commit d14c3b4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
6 changes: 3 additions & 3 deletions include/event2/http.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit d14c3b4

Please sign in to comment.