Skip to content

Commit 1fa11f1

Browse files
committed
ext/dba: Add const modifier for argument to php_dba_make_key()
1 parent fec4f7f commit 1fa11f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/dba/dba.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ ZEND_GET_MODULE(dba)
9292
#endif
9393

9494
/* {{{ php_dba_make_key */
95-
static zend_string* php_dba_make_key(HashTable *key)
95+
static zend_string* php_dba_make_key(const HashTable *key)
9696
{
9797
zval *group, *name;
9898
zend_string *group_str, *name_str;

0 commit comments

Comments
 (0)