aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authormnicholson <mnicholson@f38db490-d61c-443f-a65b-d21fe96a405b>2010-07-29 15:57:57 +0000
committermnicholson <mnicholson@f38db490-d61c-443f-a65b-d21fe96a405b>2010-07-29 15:57:57 +0000
commitcf4f1bbf8300fa66d892891ba9b3c34a44171e20 (patch)
tree74dcb9406873277a7cbdc336176023385402cd6f /channels
parentd63f06d3714d813d3dcb6f56c7fe7aaa68f46117 (diff)
Use PRIx64 instead of PRId64 in format string.
related to r280302 git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.8@280343 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_usbradio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_usbradio.c b/channels/chan_usbradio.c
index 51741f783..b5867f5a4 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%" PRId64 "x unsupported\n", format);
+ ast_log(LOG_NOTICE, "Format 0x%" PRIx64 " unsupported\n", format);
return NULL;
}
if (o->owner) {