Skip to content

Commit

Permalink
Fix incompatible pointer type in sip_basic.c
Browse files Browse the repository at this point in the history
Closes #248
  • Loading branch information
Lihis committed Feb 19, 2024
1 parent aa96cbc commit 46b02f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libsofia-sip-ua/sip/sip_basic.c
Original file line number Diff line number Diff line change
Expand Up @@ -2901,7 +2901,7 @@ issize_t sip_identity_d(su_home_t *home, sip_header_t *h, char *s, isize_t slen)
ext = strchr(ppt, ';');

if (ext) {
msg_param_t *params = su_alloc(home, sizeof(msg_param_t));
msg_param_t const *params = su_alloc(home, sizeof(msg_param_t));
if (msg_params_d(home, &ext, &params) >= 0) {
id->id_info_params = params;
}
Expand Down

0 comments on commit 46b02f0

Please sign in to comment.