summaryrefslogtreecommitdiffstats
path: root/auth_mellon_config.c
diff options
context:
space:
mode:
authorolavmrk <olavmrk@a716ebb1-153a-0410-b759-cfb97c6a1b53>2009-08-07 12:56:37 +0000
committerolavmrk <olavmrk@a716ebb1-153a-0410-b759-cfb97c6a1b53>2009-08-07 12:56:37 +0000
commite6f60211b8cecdf7e315ef19e7046cf72a9eae3a (patch)
tree7760da8d1c0d6f10ff0280d42eb2c1ee91cea727 /auth_mellon_config.c
parente1ac8fcf2993379d2d38572e11c9b13feb20616f (diff)
downloadmod_auth_mellon-e6f60211b8cecdf7e315ef19e7046cf72a9eae3a.tar.gz
mod_auth_mellon-e6f60211b8cecdf7e315ef19e7046cf72a9eae3a.tar.xz
mod_auth_mellon-e6f60211b8cecdf7e315ef19e7046cf72a9eae3a.zip
Change apr_uintptr_t to apr_size_t.
Older versions of APR does not define apr_uintptr_t. apr_size_t should be more or less equivalent in this place. git-svn-id: https://modmellon.googlecode.com/svn/trunk@60 a716ebb1-153a-0410-b759-cfb97c6a1b53
Diffstat (limited to 'auth_mellon_config.c')
-rw-r--r--auth_mellon_config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/auth_mellon_config.c b/auth_mellon_config.c
index e0277a5..e99062d 100644
--- a/auth_mellon_config.c
+++ b/auth_mellon_config.c
@@ -417,7 +417,7 @@ static const char *am_set_langstring_slot(cmd_parms *cmd,
const char *lang,
const char *value)
{
- apr_hash_t *h = *(apr_hash_t **)(struct_ptr + (apr_uintptr_t)cmd->info);
+ apr_hash_t *h = *(apr_hash_t **)(struct_ptr + (apr_size_t)cmd->info);
if (value == NULL || *value == '\0') {
value = lang;