Commit 9fd71ba
committed
Fix function signature mismatch for
- The definition for the function has the signature:
`srtp_err_status_t srtp_remove_stream(srtp_t session, uint32_t ssrc)`
- This is not always same as the signature present in srtp.h:
`srtp_err_status_t srtp_remove_stream(srtp_t session, unsigned int ssrc)`
This causes function signature mismatch.
Aligned the signature from `srtp.h` with the definition using `uint32_t`srtp_remove_stream
1 parent 596e30e commit 9fd71ba
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
631 | 631 | | |
632 | 632 | | |
633 | 633 | | |
634 | | - | |
| 634 | + | |
635 | 635 | | |
636 | 636 | | |
637 | 637 | | |
| |||
0 commit comments