summaryrefslogtreecommitdiff
path: root/decoders/decoder_mpg123.c
diff options
context:
space:
mode:
Diffstat (limited to 'decoders/decoder_mpg123.c')
-rw-r--r--decoders/decoder_mpg123.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/decoders/decoder_mpg123.c b/decoders/decoder_mpg123.c
index a7cf3d0..ea263f5 100644
--- a/decoders/decoder_mpg123.c
+++ b/decoders/decoder_mpg123.c
@@ -36,8 +36,8 @@ static gssize mpg123_decoder_decode(gpointer data, GInputStream *input,
int ret;
const int inbuf_size = 0x400*8;
const int outbuf_size = 0x400*8;
- char inbuf[inbuf_size];
- char outbuf[inbuf_size];
+ unsigned char inbuf[inbuf_size];
+ unsigned char outbuf[inbuf_size];
gsize inbuf_read = g_input_stream_read(input, inbuf, inbuf_size, NULL, NULL);