[svn-commits] mnicholson: branch 1.8 r280343 - /branches/1.8/channels/chan_usbradio.c

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


Author: mnicholson
Date: Thu Jul 29 10:57:57 2010
New Revision: 280343

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=280343
Log:
Use PRIx64 instead of PRId64 in format string.

related to r280302

Modified:
    branches/1.8/channels/chan_usbradio.c

Modified: branches/1.8/channels/chan_usbradio.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/channels/chan_usbradio.c?view=diff&rev=280343&r1=280342&r2=280343
==============================================================================
--- branches/1.8/channels/chan_usbradio.c (original)
+++ branches/1.8/channels/chan_usbradio.c Thu Jul 29 10:57:57 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