Skip to content

Commit 6db8d21

Browse files
committed
Fix const qualifier error
1 parent ad53bce commit 6db8d21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

oauthbearer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ void oauthbearer_set_token(
6060
zend_ulong num_key;
6161
zend_string *extension_key_str;
6262
zval *extension_zval;
63-
ZEND_HASH_FOREACH_KEY_VAL(extensions_hash, num_key, extension_key_str, extension_zval) {
63+
ZEND_HASH_FOREACH_KEY_VAL((HashTable*)extensions_hash, num_key, extension_key_str, extension_zval) {
6464
if (!extension_key_str) {
6565
extension_key_str = zend_long_to_str(num_key);
6666
extensions[pos++] = estrdup(ZSTR_VAL(extension_key_str));

0 commit comments

Comments
 (0)