diff options
author | Sterling Hughes <sterling@php.net> | 2001-09-06 22:51:47 +0000 |
---|---|---|
committer | Sterling Hughes <sterling@php.net> | 2001-09-06 22:51:47 +0000 |
commit | 198e6f3ea7bc031f9c8b7d43b8ef97f7a0680514 (patch) | |
tree | 7007a4451b67d142f9c727196828cad8cb0ae3e4 /sapi/apache/mod_php4.c | |
parent | 14152e7ca6145157fcf16a6c9d331176f99e939f (diff) | |
download | php-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.c | 2 |
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; } /* }}} */ |