Skip to content

Commit 46b02f0

Browse files
committed
Fix incompatible pointer type in sip_basic.c
Closes freeswitch#248
1 parent aa96cbc commit 46b02f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libsofia-sip-ua/sip/sip_basic.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2901,7 +2901,7 @@ issize_t sip_identity_d(su_home_t *home, sip_header_t *h, char *s, isize_t slen)
29012901
ext = strchr(ppt, ';');
29022902

29032903
if (ext) {
2904-
msg_param_t *params = su_alloc(home, sizeof(msg_param_t));
2904+
msg_param_t const *params = su_alloc(home, sizeof(msg_param_t));
29052905
if (msg_params_d(home, &ext, &params) >= 0) {
29062906
id->id_info_params = params;
29072907
}

0 commit comments

Comments
 (0)