]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix 32bit build for chan_sip
authorKinsey Moore <kmoore@digium.com>
Fri, 9 May 2014 22:56:14 +0000 (22:56 +0000)
committerKinsey Moore <kmoore@digium.com>
Fri, 9 May 2014 22:56:14 +0000 (22:56 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@413591 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c

index 450d6edc596c805f3d27f708f39059c61364d63d..9d77722f096a192cdc98f2ce6008fd1006d093fb 100644 (file)
@@ -11526,7 +11526,7 @@ static void add_codec_to_sdp(const struct sip_pvt *p, format_t codec,
 
 
        if (debug)
-               ast_verbose("Adding codec 0x%" PRIx64 " (%s) to SDP\n", (long unsigned)codec, ast_getformatname(codec));
+               ast_verbose("Adding codec 0x%" PRIx64 " (%s) to SDP\n", (uint64_t)codec, ast_getformatname(codec));
        if ((rtp_code = ast_rtp_codecs_payload_code(ast_rtp_instance_get_codecs(p->rtp), 1, codec)) == -1)
                return;
 
@@ -11588,7 +11588,7 @@ static void add_vcodec_to_sdp(const struct sip_pvt *p, format_t codec,
                return;
 
        if (debug)
-               ast_verbose("Adding video codec 0x%" PRIx64 " (%s) to SDP\n", (long unsigned)codec, ast_getformatname(codec));
+               ast_verbose("Adding video codec 0x%" PRIx64 " (%s) to SDP\n", (uint64_t)codec, ast_getformatname(codec));
 
        if ((rtp_code = ast_rtp_codecs_payload_code(ast_rtp_instance_get_codecs(p->vrtp), 1, codec)) == -1)
                return;