1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

fix the type of a parameter to ap_get_brigade()

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89045 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jeff Trawick
2001-05-07 10:01:31 +00:00
parent 109f7ebf1d
commit ea5640f142
2 changed files with 2 additions and 2 deletions

View File

@@ -367,7 +367,7 @@ static void check_pipeline_flush(request_rec *r)
### allow us to defer creation of the brigade to when we actually ### allow us to defer creation of the brigade to when we actually
### need to send a FLUSH. */ ### need to send a FLUSH. */
apr_bucket_brigade *bb = apr_brigade_create(r->pool); apr_bucket_brigade *bb = apr_brigade_create(r->pool);
int zero = 0; apr_size_t zero = 0;
/* Flush the filter contents if: /* Flush the filter contents if:
* *

View File

@@ -217,7 +217,7 @@ AP_CORE_DECLARE(int) ap_getline(char *s, int n, request_rec *r, int fold)
while (1) { while (1) {
if (APR_BRIGADE_EMPTY(b)) { if (APR_BRIGADE_EMPTY(b)) {
int zero = 0; apr_size_t zero = 0;
if ((retval = ap_get_brigade(c->input_filters, b, if ((retval = ap_get_brigade(c->input_filters, b,
AP_MODE_BLOCKING, AP_MODE_BLOCKING,
&zero /* readline */)) != APR_SUCCESS || &zero /* readline */)) != APR_SUCCESS ||