From e6f60211b8cecdf7e315ef19e7046cf72a9eae3a Mon Sep 17 00:00:00 2001 From: olavmrk Date: Fri, 7 Aug 2009 12:56:37 +0000 Subject: 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 --- auth_mellon_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'auth_mellon_config.c') 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; -- cgit