Skip to content

Commit

Permalink
fix: remove const qualifier
Browse files Browse the repository at this point in the history
  • Loading branch information
cb-freddysart committed Jan 18, 2024
1 parent 9d9e823 commit 6a40ad1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rdkafka.c
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ PHP_METHOD(RdKafka, oauthbearerSetToken)
errstr[0] = '\0';

int extensions_size;
const char **extensions = NULL;
char **extensions = NULL;

if (extensions_hash != NULL) {
extensions_size = zend_hash_num_elements(extensions_hash) * 2;
Expand Down

0 comments on commit 6a40ad1

Please sign in to comment.