aboutsummaryrefslogtreecommitdiffstats
path: root/addons
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-01-10 19:37:30 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2010-01-10 19:37:30 +0000
commit13b87f413fdf80c6ee92e9fc801866dd6c8b1db4 (patch)
tree5fa7148e89349c03cf597ea0e734db262bc278c8 /addons
parent82a849a9d77a9a55460dd7a2f93c84473172218c (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: http://svn.digium.com/svn/asterisk/trunk@239074 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'addons')
-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;
}