1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00

ext/dba: Add const modifier for argument to php_dba_make_key()

This commit is contained in:
Gina Peter Banyard
2025-03-25 04:01:35 +00:00
parent fec4f7f389
commit 1fa11f17ff

View File

@@ -92,7 +92,7 @@ ZEND_GET_MODULE(dba)
#endif
/* {{{ php_dba_make_key */
static zend_string* php_dba_make_key(HashTable *key)
static zend_string* php_dba_make_key(const HashTable *key)
{
zval *group, *name;
zend_string *group_str, *name_str;