From 613e102539593c03118f605d3d08d345c81aef05 Mon Sep 17 00:00:00 2001 From: Paul Belanger Date: Wed, 28 Jul 2010 01:37:10 +0000 Subject: [PATCH] Resolve compiler warning about formatting (closes issue #17732) Reported by: pabelanger git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@280023 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_usbradio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/channels/chan_usbradio.c b/channels/chan_usbradio.c index 10449be911..729b24d3cb 100644 --- a/channels/chan_usbradio.c +++ b/channels/chan_usbradio.c @@ -2243,7 +2243,7 @@ static struct ast_channel *usbradio_request(const char *type, format_t format, c return NULL; } if ((format & AST_FORMAT_SLINEAR) == 0) { - ast_log(LOG_NOTICE, "Format 0x%lx unsupported\n", format); + ast_log(LOG_NOTICE, "Format 0x%llx unsupported\n", format); return NULL; } if (o->owner) {