]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
[2/3][sofia-sip] gcc-4.5: Fix enum type mismatch.
authorStefan Knoblich <s.knoblich@axsentis.de>
Sat, 17 Apr 2010 11:17:28 +0000 (11:17 +0000)
committerStefan Knoblich <s.knoblich@axsentis.de>
Sat, 17 Apr 2010 11:17:28 +0000 (11:17 +0000)
libs/sofia-sip/libsofia-sip-ua/sdp/sdp.c

index 9ea45131a5184e325a7a7b164e70abdc32c8453d..867ca7a79d101187d01636a0796e30eca50ca35f 100644 (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;