From: Matthew Nicholson Date: Thu, 29 Jul 2010 15:41:27 +0000 (+0000) Subject: Make chan_usbradio.c build on 64bit platforms. X-Git-Tag: 11.0.0-beta1~2524 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3329e69b1204ee91784480cdd98c507031e486a5;p=thirdparty%2Fasterisk.git Make chan_usbradio.c build on 64bit platforms. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@280340 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_usbradio.c b/channels/chan_usbradio.c index 729b24d3cb..6610a314ac 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%llx unsupported\n", format); + ast_log(LOG_NOTICE, "Format 0x%llx unsupported\n", (unsigned long long) format); return NULL; } if (o->owner) {