mirror of
https://github.com/asterisk/asterisk.git
synced 2026-06-28 11:19:11 -07:00
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/trunk@158262 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
+1
-1
@@ -7309,7 +7309,7 @@ static int process_sdp(struct sip_pvt *p, struct sip_request *req, int t38action
|
||||
ast_log(LOG_WARNING, "SDP syntax 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 syntax error in o= line version\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user