summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2008-11-21 01:22:18 +0000
committerMark Michelson <mmichelson@digium.com>2008-11-21 01:22:18 +0000
commit95c416df0b7751f613798a90ec8706e3cf74bec5 (patch)
tree7582e22525a3a4ea03f8cefbf2c51e0f32573928 /channels
parentbd6586e3d77ba2322905f874f7d6f2458d39c8cf (diff)
Use a more expressive constant for a 64-bit scanned int
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@158266 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 0cffb9e96..103c295a0 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -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, "%" __PRI64_PREFIX "u", &rua_version)) {
+ if (!sscanf(token, "%" SCNu64, &rua_version)) {
ast_log(LOG_WARNING, "SDP syntax error in o= line version\n");
return -1;
}