From 0bf396d610a78a16e49fe72f9ba4aa9a49a6053c Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Mon, 17 Jul 2006 21:46:32 +0000 Subject: some quick hacks to avoid signedness warnings with gcc4 git-svn-id: https://svn.musicpd.org/mpd/trunk@4387 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/inputPlugins/audiofile_plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/inputPlugins/audiofile_plugin.c') diff --git a/src/inputPlugins/audiofile_plugin.c b/src/inputPlugins/audiofile_plugin.c index 86a54c690..2284b4f01 100644 --- a/src/inputPlugins/audiofile_plugin.c +++ b/src/inputPlugins/audiofile_plugin.c @@ -93,7 +93,7 @@ static int audiofile_decode(OutputBuffer * cb, DecoderControl * dc, char * path) dc->state = DECODE_STATE_DECODE; { int ret, eof = 0, current = 0; - unsigned char chunk[CHUNK_SIZE]; + char chunk[CHUNK_SIZE]; while(!eof) { if(dc->seek) { -- cgit v1.2.3