]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
use the typedef for an enum rather than unsigned
authorTravis Cross <tc@traviscross.com>
Wed, 16 May 2012 21:26:50 +0000 (21:26 +0000)
committerTravis Cross <tc@traviscross.com>
Wed, 16 May 2012 21:26:50 +0000 (21:26 +0000)
The callback here receives both zrtp_protocol_event_t and
zrtp_security_event_t events.  The latter is numbered contiguously to
the former.  Still, it's a bit confusing to have to pick one as a
type, but apparently this fixes a warning on Visual Studio on Windows.

Thanks to Jeff Lenk.

src/switch_rtp.c

index c34da28c58699e36446868684e3d9eeda266741e..9211ec2cee9b83055947b471065114e74a292374 100644 (file)
@@ -688,7 +688,7 @@ static int zrtp_send_rtp_callback(const zrtp_stream_t *stream, char *rtp_packet,
        return status;
 }
 
-static void zrtp_event_callback(zrtp_stream_t *stream, unsigned event)
+static void zrtp_event_callback(zrtp_stream_t *stream, zrtp_security_event_t event)
 {
        switch_rtp_t *rtp_session = zrtp_stream_get_userdata(stream);
        zrtp_session_info_t zrtp_session_info;