From 28cf66edb86af6fb90a962bb826814ce866ccf82 Mon Sep 17 00:00:00 2001 From: Mark Michelson Date: Fri, 21 Nov 2008 01:00:24 +0000 Subject: [PATCH] Merged revisions 158262 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ........ r158262 | mmichelson | 2008-11-20 18:59:23 -0600 (Thu, 20 Nov 2008) | 6 lines Fix the build for 32-bit systems. %lu is only 32-bits on 32-bit systems, so we need to use %llu instead. Of course %llu is 128-bits on 64-bit systems, so we have to cast to unsigned long long. No harm, but it's sure annoying. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.0@158263 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_sip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/chan_sip.c b/channels/chan_sip.c index d2a297f177..19dc9f833b 100644 --- a/channels/chan_sip.c +++ b/channels/chan_sip.c @@ -6558,7 +6558,7 @@ static int process_sdp(struct sip_pvt *p, struct sip_request *req, int t38action ast_log(LOG_WARNING, "SDP sytax error in o= line\n"); return -1; } - if (!sscanf(token, "%lu", &rua_version)) { + if (!sscanf(token, "%llu", (unsigned long long *) &rua_version)) { ast_log(LOG_WARNING, "SDP sytax error in o= line version\n"); return -1; }