diff options
author | Guenter Knauf <fuankg@apache.org> | 2013-07-07 05:12:52 +0200 |
---|---|---|
committer | Guenter Knauf <fuankg@apache.org> | 2013-07-07 05:12:52 +0200 |
commit | 3b905a6fb4bcf32684d6fb3ec0ed7db2b6f56fbc (patch) | |
tree | 8a61f57b18507a7810fd0705ab6b49a53218d84e /modules/cache | |
parent | Fixed type. (diff) | |
download | apache2-3b905a6fb4bcf32684d6fb3ec0ed7db2b6f56fbc.tar.xz apache2-3b905a6fb4bcf32684d6fb3ec0ed7db2b6f56fbc.zip |
Fix some compiler warnings.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1500362 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/cache')
-rw-r--r-- | modules/cache/mod_socache_memcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/cache/mod_socache_memcache.c b/modules/cache/mod_socache_memcache.c index beeeec2c98..8cabd8a50b 100644 --- a/modules/cache/mod_socache_memcache.c +++ b/modules/cache/mod_socache_memcache.c @@ -85,7 +85,7 @@ static apr_status_t socache_mc_init(ap_socache_instance_t *ctx, { apr_status_t rv; int thread_limit = 0; - int nservers = 0; + apr_uint16_t nservers = 0; char *cache_config; char *split; char *tok; |