[asterisk-commits] mmichelson: trunk r158262 - /trunk/channels/chan_sip.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Nov 20 18:59:24 CST 2008
Author: mmichelson
Date: Thu Nov 20 18:59:23 2008
New Revision: 158262
URL: http://svn.digium.com/view/asterisk?view=rev&rev=158262
Log:
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.
Modified:
trunk/channels/chan_sip.c
Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?view=diff&rev=158262&r1=158261&r2=158262
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Thu Nov 20 18:59:23 2008
@@ -7309,7 +7309,7 @@
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;
}
More information about the asterisk-commits
mailing list