diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2000-10-11 09:42:44 +0200 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2000-10-11 09:42:44 +0200 |
commit | b010bb52625d739687127176977e01801690b285 (patch) | |
tree | 25e6e1a9920f6fffb802228c3d2a1b4ee2b9253a /srclib | |
parent | Away fool precompiled headers... while I'm at it, need to look at why (diff) | |
download | apache2-b010bb52625d739687127176977e01801690b285.tar.xz apache2-b010bb52625d739687127176977e01801690b285.zip |
Yet another warning down (pps... I choose to cast rc since i is being
doubled... I expect the mismatched types were deliberate.)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86529 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'srclib')
-rw-r--r-- | srclib/pcre/pcreposix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/srclib/pcre/pcreposix.c b/srclib/pcre/pcreposix.c index 7c66ccec89..c6edb7dbec 100644 --- a/srclib/pcre/pcreposix.c +++ b/srclib/pcre/pcreposix.c @@ -247,7 +247,7 @@ if (rc == 0) rc = nmatch; /* All captured slots were filled in */ if (rc >= 0) { size_t i; - for (i = 0; i < rc; i++) + for (i = 0; i < (size_t) rc; i++) { pmatch[i].rm_so = ovector[i*2]; pmatch[i].rm_eo = ovector[i*2+1]; |