From 02a32dd89dd1413045e1f545130ae13f013fec40 Mon Sep 17 00:00:00 2001 From: Claudio Matsuoka Date: Sat, 23 Feb 2013 09:47:04 -0300 Subject: [PATCH] [xmp] Fix data type in coreaudio driver Misty De Meo warns that there's no uint8 in OSX 10.6 and earlier. Using plain unsigned char instead. Signed-off-by: Claudio Matsuoka --- src/sound_coreaudio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sound_coreaudio.c b/src/sound_coreaudio.c index 45a625b..20e0e26 100644 --- a/src/sound_coreaudio.c +++ b/src/sound_coreaudio.c @@ -21,7 +21,7 @@ static AudioUnit au; */ static int paused; -static uint8 *buffer; +static unsigned char *buffer; static int buffer_len; static int buf_write_pos; static int buf_read_pos;