SDP: Make SDP translation to/from internal representation more const.

Change-Id: I473a174b869728604b37c60853896b0c458bc504
This commit is contained in:
Richard Mudgett
2017-04-24 18:13:04 -05:00
parent 5c1851cbc0
commit ede90e4aa5
5 changed files with 14 additions and 14 deletions

View File

@@ -1084,7 +1084,7 @@ int ast_sdp_state_set_remote_sdp(struct ast_sdp_state *sdp_state, const struct a
return merge_sdps(sdp_state, sdp);
}
int ast_sdp_state_set_remote_sdp_from_impl(struct ast_sdp_state *sdp_state, void *remote)
int ast_sdp_state_set_remote_sdp_from_impl(struct ast_sdp_state *sdp_state, const void *remote)
{
struct ast_sdp *sdp;
int ret;