diff options
author | Stefan Eissing <icing@apache.org> | 2018-10-10 13:22:53 +0200 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2018-10-10 13:22:53 +0200 |
commit | 67ff31299459d3f925313ccc7357725feb2a57a4 (patch) | |
tree | fd23f351f7c5904cd76eb0e0cd3ba6ba53f380a9 /modules/http2/mod_http2.c | |
parent | Add CHANGES entry (diff) | |
download | apache2-67ff31299459d3f925313ccc7357725feb2a57a4.tar.xz apache2-67ff31299459d3f925313ccc7357725feb2a57a4.zip |
mod_http2: bringing some signed/unsigned casting goodness, aligning with github mod-h2 again
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1843424 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/mod_http2.c')
-rw-r--r-- | modules/http2/mod_http2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http2/mod_http2.c b/modules/http2/mod_http2.c index 3d278e9f2f..34c6a10e8c 100644 --- a/modules/http2/mod_http2.c +++ b/modules/http2/mod_http2.c @@ -184,7 +184,7 @@ static apr_status_t http2_req_engine_pull(h2_req_engine *ngn, int capacity, request_rec **pr) { - return h2_mplx_req_engine_pull(ngn, block, capacity, pr); + return h2_mplx_req_engine_pull(ngn, block, (apr_uint32_t)capacity, pr); } static void http2_req_engine_done(h2_req_engine *ngn, conn_rec *r_conn, |