From 13b87f413fdf80c6ee92e9fc801866dd6c8b1db4 Mon Sep 17 00:00:00 2001 From: tilghman Date: Sun, 10 Jan 2010 19:37:30 +0000 Subject: 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 --- addons/chan_ooh323.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'addons') 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; } -- cgit v1.2.3