mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-13 15:50:59 +00:00
[2/3][sofia-sip] gcc-4.5: Fix enum type mismatch.
This commit is contained in:
parent
16d672a273
commit
8f2b8388fc
@ -1469,7 +1469,7 @@ int sdp_media_cmp(sdp_media_t const *a, sdp_media_t const *b)
|
||||
|
||||
if (a->m_proto != b->m_proto)
|
||||
return a->m_proto < b->m_proto ? -1 : 1;
|
||||
if (a->m_proto == sdp_media_x)
|
||||
if (a->m_proto == sdp_proto_x)
|
||||
if ((rv = su_strcmp(a->m_proto_name, b->m_proto_name)))
|
||||
return rv;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user