dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 280343 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.8

........
  r280343 | mnicholson | 2010-07-29 10:57:57 -0500 (Thu, 29 Jul 2010) | 4 lines
  
  Use PRIx64 instead of PRId64 in format string.
  
  related to r280302
........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@280344 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
mnicholson 2010-07-29 15:58:39 +00:00
parent 80d23e87af
commit a2d75b5504
1 changed files with 1 additions and 1 deletions

View File

@ -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) {