summaryrefslogtreecommitdiffstats
path: root/server/log.c
diff options
context:
space:
mode:
authorVictor J. Orlikowski <orlikowski@apache.org>2002-07-10 08:01:14 +0200
committerVictor J. Orlikowski <orlikowski@apache.org>2002-07-10 08:01:14 +0200
commitd982829aa1f6cf8baabf77cd300983cb8de8ee7b (patch)
tree73866642f38f07bee8df269b3669a66c29dc3971 /server/log.c
parent Narrow service manager access to what is actually needed to perform (diff)
downloadapache2-d982829aa1f6cf8baabf77cd300983cb8de8ee7b.tar.xz
apache2-d982829aa1f6cf8baabf77cd300983cb8de8ee7b.zip
Continue the Bill Rowe apr_size_t crusade.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95993 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/log.c')
-rw-r--r--server/log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/log.c b/server/log.c
index 091f8fcfa4..4522ea24cf 100644
--- a/server/log.c
+++ b/server/log.c
@@ -387,7 +387,7 @@ static void log_error_core(const char *file, int line, int level,
const char *fmt, va_list args)
{
char errstr[MAX_STRING_LEN];
- size_t len, errstrlen;
+ apr_size_t len, errstrlen;
apr_file_t *logf = NULL;
const char *referer;
int level_and_mask = level & APLOG_LEVELMASK;