summaryrefslogtreecommitdiff
path: root/sapi/apache/mod_php4.c
diff options
context:
space:
mode:
authorSterling Hughes <sterling@php.net>2001-09-06 22:51:47 +0000
committerSterling Hughes <sterling@php.net>2001-09-06 22:51:47 +0000
commit198e6f3ea7bc031f9c8b7d43b8ef97f7a0680514 (patch)
tree7007a4451b67d142f9c727196828cad8cb0ae3e4 /sapi/apache/mod_php4.c
parent14152e7ca6145157fcf16a6c9d331176f99e939f (diff)
downloadphp-git-198e6f3ea7bc031f9c8b7d43b8ef97f7a0680514.tar.gz
no need to cast a 'HashTable *' to 'HashTable *'
Diffstat (limited to 'sapi/apache/mod_php4.c')
-rw-r--r--sapi/apache/mod_php4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache/mod_php4.c b/sapi/apache/mod_php4.c
index 6619bf4519..151fab0056 100644
--- a/sapi/apache/mod_php4.c
+++ b/sapi/apache/mod_php4.c
@@ -713,7 +713,7 @@ CONST_PREFIX char *php_apache_value_handler_ex(cmd_parms *cmd, HashTable *conf,
memcpy(per_dir_entry.value, arg2, per_dir_entry.value_length);
per_dir_entry.value[per_dir_entry.value_length] = 0;
- zend_hash_update((HashTable *) conf, per_dir_entry.key, per_dir_entry.key_length, &per_dir_entry, sizeof(php_per_dir_entry), NULL);
+ zend_hash_update(conf, per_dir_entry.key, per_dir_entry.key_length, &per_dir_entry, sizeof(php_per_dir_entry), NULL);
return NULL;
}
/* }}} */