[2/3][sofia-sip] gcc-4.5: Fix enum type mismatch.

This commit is contained in:
Stefan Knoblich 2010-04-17 11:17:28 +00:00
parent 16d672a273
commit 8f2b8388fc
1 changed files with 1 additions and 1 deletions

View File

@ -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;