From: David Reid Date: Thu, 10 Feb 2000 13:24:13 +0000 (+0000) Subject: Small changes to remove some compiler complaints. X-Git-Tag: 1.3.12~34 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c589013b9f39c9447a8d65ed0dc3f952bc88e5b;p=apache Small changes to remove some compiler complaints. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84598 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/generators/mod_autoindex.c b/modules/generators/mod_autoindex.c index d439e3acb6..4f693d64cd 100644 --- a/modules/generators/mod_autoindex.c +++ b/modules/generators/mod_autoindex.c @@ -1277,7 +1277,8 @@ static void output_directories(struct ent **ar, int n, autoindex_config_rec *d, request_rec *r, int autoindex_opts, char keyid, char direction) { - int x, rv; + int x; + ap_size_t rv; char *name = r->uri; char *tp; int static_columns = (autoindex_opts & SUPPRESS_COLSORT); diff --git a/modules/loggers/mod_log_config.c b/modules/loggers/mod_log_config.c index 43e8510470..fd4fadec0b 100644 --- a/modules/loggers/mod_log_config.c +++ b/modules/loggers/mod_log_config.c @@ -384,7 +384,7 @@ static const char *log_env_var(request_rec *r, char *a) static const char *log_request_time(request_rec *r, char *a) { ap_exploded_time_t xt; - ap_status_t retcode; + ap_size_t retcode; char tstr[MAX_STRING_LEN]; /* diff --git a/server/util.c b/server/util.c index 19458e556b..19cdecf93d 100644 --- a/server/util.c +++ b/server/util.c @@ -117,7 +117,7 @@ API_EXPORT(char *) ap_field_noparam(ap_context_t *p, const char *intype) API_EXPORT(char *) ap_ht_time(ap_context_t *p, ap_time_t t, const char *fmt, int gmt) { - ap_int32_t retcode; + ap_size_t retcode; char ts[MAX_STRING_LEN]; char tf[MAX_STRING_LEN]; ap_exploded_time_t xt;