Skip to content

Commit 48e1fbd

Browse files
authored
Merge pull request #65 from abbra/fix-discarded-qualifiers
Fix use of strchr with new GCC
2 parents e11e179 + 0dcba07 commit 48e1fbd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/jose.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -993,7 +993,7 @@ char *oauth2_jose_jwt_header_peek(oauth2_log_t *log,
993993
{
994994
char *input = NULL, *result = NULL;
995995
json_t *json = NULL;
996-
char *p = NULL;
996+
const char *p = NULL;
997997
size_t result_len;
998998
char *rv = NULL;
999999

0 commit comments

Comments
 (0)