summaryrefslogtreecommitdiff
path: root/addons/chan_ooh323.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2010-01-10 19:37:30 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2010-01-10 19:37:30 +0000
commit9c1b53cab4b0e72c17f6054877ed0e2fe83c5367 (patch)
tree5fa7148e89349c03cf597ea0e734db262bc278c8 /addons/chan_ooh323.c
parent11e1780402816ca5aebd546c0297445348368b9b (diff)
According to POSIX, the capital L modifier applies only to floating point types.
Fixes a crash on Solaris. (closes issue #16572) Reported by: crjw Patches: frame_changes.patch uploaded by crjw (license 963) Plus several others found and fixed by me git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@239074 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'addons/chan_ooh323.c')
-rw-r--r--addons/chan_ooh323.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/addons/chan_ooh323.c b/addons/chan_ooh323.c
index 4c633ed3a..1d012a9eb 100644
--- a/addons/chan_ooh323.c
+++ b/addons/chan_ooh323.c
@@ -558,7 +558,7 @@ static struct ast_channel *ooh323_request(const char *type, format_t format,
oldformat = format;
format &= AST_FORMAT_AUDIO_MASK;
if (!format) {
- ast_log(LOG_NOTICE, "Asked to get a channel of unsupported format '%Ld'\n", (long long) format);
+ ast_log(LOG_NOTICE, "Asked to get a channel of unsupported format '%lld'\n", (long long) format);
return NULL;
}