diff options
author | Erik Abele <erikabele@apache.org> | 2004-01-03 17:02:15 +0100 |
---|---|---|
committer | Erik Abele <erikabele@apache.org> | 2004-01-03 17:02:15 +0100 |
commit | b20a1ec4dfe7a10a42869d3bd59304d45dd36b33 (patch) | |
tree | f8115124810e9d9e9c194b1a7fda440a4c548b3b | |
parent | * support/ab.c (write_request): Fix gcc warning at -O2 in USE_SSL (diff) | |
download | apache2-b20a1ec4dfe7a10a42869d3bd59304d45dd36b33.tar.xz apache2-b20a1ec4dfe7a10a42869d3bd59304d45dd36b33.zip |
Add missing apr_ to size_t.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102156 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | modules/loggers/mod_log_forensic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/loggers/mod_log_forensic.c b/modules/loggers/mod_log_forensic.c index 65c91ce0c9..3a7b010deb 100644 --- a/modules/loggers/mod_log_forensic.c +++ b/modules/loggers/mod_log_forensic.c @@ -177,7 +177,7 @@ typedef struct hlog { char *pos; char *end; apr_pool_t *p; - size_t count; + apr_size_t count; } hlog; static int count_string(const char *p) |