Author: adrian Date: Sun Jul 11 22:53:57 2010 New Revision: 31712 Log: Fix printf specifiers used in ao_coreaudio. Fixes warnings: libao2/ao_coreaudio.c:203: warning: format '%lu' expects type 'long unsigned int', but argument n has type 'UInt32' Modified: trunk/libao2/ao_coreaudio.c Modified: trunk/libao2/ao_coreaudio.c ============================================================================== --- trunk/libao2/ao_coreaudio.c Sun Jul 11 19:53:44 2010 (r31711) +++ trunk/libao2/ao_coreaudio.c Sun Jul 11 22:53:57 2010 (r31712) @@ -200,7 +200,7 @@ Float32 vol; static void print_format(int lev, const char* str, const AudioStreamBasicDescription *f){ uint32_t flags=(uint32_t) f->mFormatFlags; - ao_msg(MSGT_AO,lev, "%s %7.1fHz %lubit [%c%c%c%c][%lu][%lu][%lu][%lu][%lu] %s %s %s%s%s%s\n", + ao_msg(MSGT_AO,lev, "%s %7.1fHz %"PRIu32"bit [%c%c%c%c][%"PRIu32"][%"PRIu32"][%"PRIu32"][%"PRIu32"][%"PRIu32"] %s %s %s%s%s%s\n", str, f->mSampleRate, f->mBitsPerChannel, (int)(f->mFormatID & 0xff000000) >> 24, (int)(f->mFormatID & 0x00ff0000) >> 16, @@ -302,7 +302,7 @@ int b_alive; goto err_out; } - ao_msg(MSGT_AO,MSGL_V, "got default audio output device ID: %#lx Name: %s\n", devid_def, psz_name ); + ao_msg(MSGT_AO,MSGL_V, "got default audio output device ID: %"PRIu32" Name: %s\n", devid_def, psz_name ); if (AudioDeviceSupportsDigital(devid_def)) {
participants (5)
-
adrian -
Adrian Stutz -
Alexander Strange -
Diego Biurrun -
Reimar Döffinger