[svn-commits] mnicholson: trunk r280344 - in /trunk: ./ channels/chan_usbradio.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Jul 29 10:58:42 CDT 2010


Author: mnicholson
Date: Thu Jul 29 10:58:39 2010
New Revision: 280344

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=280344
Log:
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
........

Modified:
    trunk/   (props changed)
    trunk/channels/chan_usbradio.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.

Modified: trunk/channels/chan_usbradio.c
URL: http://svnview.digium.com/svn/asterisk/trunk/channels/chan_usbradio.c?view=diff&rev=280344&r1=280343&r2=280344
==============================================================================
--- trunk/channels/chan_usbradio.c (original)
+++ trunk/channels/chan_usbradio.c Thu Jul 29 10:58:39 2010
@@ -2243,7 +2243,7 @@
 		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) {




More information about the svn-commits mailing list