Commit 4dcfaa7e authored by Justin Erenkrantz's avatar Justin Erenkrantz
Browse files

Change the type to be consistent with wrowe's changes.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91051 13f79535-47bb-0310-9956-ffa450edef68
parent 9daab8fb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -252,8 +252,8 @@ static void bndm_compile(bndm_t *t, const char *n, apr_size_t nl)
 * Returns the count of character that is the first match or hl if no
 * match is found.
 */
static int bndm(const char *n, apr_size_t nl, const char *h, apr_size_t hl, 
                bndm_t *t)
static apr_size_t bndm(const char *n, apr_size_t nl, const char *h, 
                       apr_size_t hl, bndm_t *t)
{
    apr_size_t skip;
    const char *he, *p, *pi;